/* ============================================
   GRACKLE NEST - Playful & Quirky Design System
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Colors - Refined Palette */
  --bg-warm: #fafafa;
  --bg-cream: #f8f6f3;
  --bg-purple-soft: #f8f7fc;
  --bg-yellow-soft: #fdfcf7;

  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;

  --purple: #5b4dc3;
  --purple-dark: #4a3ea3;
  --purple-light: #8b7fd6;
  --gold: #c9a227;
  --gold-dark: #a88620;
  --gold-light: #e8d48a;
  --accent: #7c6b4f;
  --accent-light: #a89878;

  /* Typography */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius - Rounded & Friendly */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows - Soft & Playful */
  --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.08);
  --shadow-md: 0 4px 16px rgba(124, 58, 237, 0.1);
  --shadow-lg: 0 8px 32px rgba(124, 58, 237, 0.12);
  --shadow-playful: 4px 4px 0 var(--purple-light);
  --shadow-playful-gold: 4px 4px 0 var(--gold-light);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-warm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
  color: var(--text-secondary);
  max-width: 65ch;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--purple-dark);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--space-4xl) 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 252, 249, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  transition: box-shadow var(--transition-base);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.logo__icon-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  object-fit: contain;
  transition: transform var(--transition-bounce);
}

.logo:hover .logo__icon-img {
  transform: rotate(-10deg) scale(1.1);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__links {
  display: none;
  list-style: none;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  position: relative;
  color: var(--text-secondary);
  font-weight: 500;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--purple);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--active {
  color: var(--purple);
}

.nav__link--active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-warm);
  padding: var(--space-xl);
  z-index: 99;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-menu__link {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-bounce);
}

.btn--primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 4px 0 var(--purple-dark);
}

.btn--primary:hover {
  background: var(--purple-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #5b21b6;
}

.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--purple-dark);
}

.btn--secondary {
  background: white;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn--secondary:hover {
  background: var(--bg-purple-soft);
  color: var(--purple-dark);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: white;
  box-shadow: 0 4px 0 var(--gold-dark);
}

.btn--gold:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #8a6d18;
}

.btn--sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
}

.btn--lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__text {
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: white;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  margin-bottom: var(--space-lg);
}

.hero__title-accent {
  color: var(--purple);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Grackle Hero Image */
.grackle-hero {
  width: 100%;
  max-width: 350px;
  height: auto;
  transition: transform var(--transition-base);
}

.grackle-hero:hover {
  transform: scale(1.03) rotate(-2deg);
}

@media (min-width: 768px) {
  .grackle-hero {
    max-width: 400px;
  }
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.1);
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-mockup__notch {
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}

.phone-mockup__content {
  flex: 1;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-purple-soft);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.trust-bar__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.trust-bar__divider {
  color: var(--purple-light);
  font-size: 1.5rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: white;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__label {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--bg-purple-soft);
  color: var(--purple);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-light);
}

.service-card__number {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-purple-soft);
  color: var(--purple);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(91, 77, 195, 0.15);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: white;
  font-size: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.service-card__title {
  margin-bottom: var(--space-sm);
}

.service-card__problem {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.service-card__solution {
  color: var(--text-secondary);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  background: var(--bg-cream);
}

.process__timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
}

@media (min-width: 768px) {
  .process__timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  position: relative;
  text-align: center;
  padding: var(--space-xl);
}

.process-step__number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-playful);
}

.process-step__title {
  margin-bottom: var(--space-sm);
}

.process-step__desc {
  font-size: 0.9375rem;
}

/* Connector line on desktop */
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -10%;
    width: 20%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-light) 0%, transparent 100%);
    border-radius: var(--radius-full);
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: white;
  text-align: center;
}

.cta-section__title {
  color: white;
  margin-bottom: var(--space-md);
}

.cta-section__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn--secondary {
  background: white;
  color: var(--purple);
  border-color: white;
}

.cta-section .btn--secondary:hover {
  background: var(--bg-purple-soft);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-primary);
  color: white;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.footer__logo-icon-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer__nav h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: white;
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   PACKAGES PAGE
   ============================================ */
.page-header {
  padding-top: calc(72px + var(--space-3xl));
  padding-bottom: var(--space-2xl);
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  position: relative;
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(124, 58, 237, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.pricing-card__features {
  flex-grow: 1;
}

.pricing-card:hover {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--purple);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-xs) var(--space-md);
  background: var(--purple);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.pricing-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: var(--space-xs);
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-card__subprice {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.pricing-card__features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pricing-card__features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--purple);
  border-radius: 50%;
  margin-top: 2px;
}

/* Add-ons Grid */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .addons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.addon-card {
  padding: var(--space-lg);
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.addon-card__name {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.addon-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--purple);
  margin-bottom: var(--space-sm);
}

.addon-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--purple);
  transition: transform var(--transition-base);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__content {
  padding-bottom: var(--space-lg);
  color: var(--text-secondary);
}

/* ============================================
   WORK/PORTFOLIO PAGE
   ============================================ */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.work-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: all var(--transition-base);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.work-card__image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-purple-soft) 0%, var(--bg-cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-family: var(--font-heading);
}

.work-card__content {
  padding: var(--space-xl);
}

.work-card__tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--bg-purple-soft);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.work-card__title {
  margin-bottom: var(--space-sm);
}

.work-card__problem {
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.work-card__solution {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

.about-photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-purple-soft) 0%, var(--bg-cream) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-family: var(--font-heading);
  margin: 0 auto;
}

.about-content h1 {
  margin-bottom: var(--space-md);
}

.about-content p {
  margin-bottom: var(--space-md);
  font-size: 1.0625rem;
}

.principles {
  background: white;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.principle-card {
  padding: var(--space-xl);
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--purple);
}

.principle-card__title {
  margin-bottom: var(--space-sm);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-info p {
  margin-bottom: var(--space-xl);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-warm);
  border-radius: var(--radius-md);
}

.contact-method__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
}

.contact-method__label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-method__value {
  font-weight: 600;
  color: var(--text-primary);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.form-group label span {
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: white;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 100ms; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 200ms; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 300ms; }

/* Button hover bounce */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Grackle idle animation placeholder */
@keyframes grackle-idle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

.grackle-animate {
  animation: grackle-idle 3s ease-in-out infinite;
}

/* Confetti burst (triggered via JS) */
@keyframes confetti-fall {
  0% {
    transform: translateY(-100%) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--purple);
  animation: confetti-fall 3s ease-out forwards;
  pointer-events: none;
  z-index: 1000;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-accent { color: var(--accent); }
.bg-white { background: white; }
.bg-cream { background: var(--bg-cream); }
.bg-purple-soft { background: var(--bg-purple-soft); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
