/* ═══════════════════════════════════════════════════════════════════════════
   TinkerToli Homepage — Warm, Human-centered, Nature-inspired Design
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Caveat:wght@400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Five Dimensions */
  --dim-physical: #E8763A;
  --dim-physical-soft: #FEF3EC;
  --dim-physical-mid: #F5C9A8;
  --dim-vital: #E5A71B;
  --dim-vital-soft: #FEF9EA;
  --dim-vital-mid: #F5DFA0;
  --dim-mental: #4A90D9;
  --dim-mental-soft: #EBF3FC;
  --dim-mental-mid: #A8CCEF;
  --dim-psychic: #D4639A;
  --dim-psychic-soft: #FCEEF5;
  --dim-psychic-mid: #F0B8D4;
  --dim-spiritual: #8B5FBF;
  --dim-spiritual-soft: #F3EDFA;
  --dim-spiritual-mid: #C8AEDF;

  /* Neutrals */
  --warm-white: #FFFCF8;
  --warm-cream: #FFF8F0;
  --warm-sand: #F5EDE3;
  --warm-stone: #E8DDD0;
  --text-deep: #2C1810;
  --text-body: #4A3728;
  --text-muted: #7A6B5D;
  --text-light: #A89888;

  /* Accents */
  --forest: #3A7D5C;
  --earth: #8B6B4A;
  --sky: #87CEEB;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 7rem);
  --content-max: 1200px;
  --card-radius: 1.25rem;
}

/* ── Reset for Homepage ── */
.tt-home * { box-sizing: border-box; }
.tt-home {
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.tt-home img { max-width: 100%; height: auto; }

/* ── Scroll Animations ── */
.tt-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.tt-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.tt-reveal-delay-1 { transition-delay: 0.1s; }
.tt-reveal-delay-2 { transition-delay: 0.2s; }
.tt-reveal-delay-3 { transition-delay: 0.3s; }
.tt-reveal-delay-4 { transition-delay: 0.4s; }
.tt-reveal-delay-5 { transition-delay: 0.5s; }

/* ── Typography ── */
.tt-home h1, .tt-home h2, .tt-home h3, .tt-home h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tt-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.tt-section-tag::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--dim-physical);
  border-radius: 2px;
}

.tt-section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.tt-section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.tt-handwritten {
  font-family: 'Caveat', cursive;
  font-weight: 600;
}

/* ── Container ── */
.tt-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Navigation ── */
.tt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.25rem;
  transition: all 0.4s ease;
}
.tt-nav.is-scrolled {
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(44, 24, 16, 0.06);
  padding: 0.75rem 1.25rem;
}

.tt-nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tt-nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-deep);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.tt-nav-logo span {
  color: var(--dim-physical);
}

.tt-nav-links {
  display: none;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tt-nav-links a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.tt-nav-links a:hover {
  color: var(--text-deep);
  background: var(--warm-sand);
}

.tt-nav-cta {
  display: none;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--dim-physical);
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.tt-nav-cta:hover {
  background: #D06830;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 118, 58, 0.3);
}

.tt-nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.tt-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-deep);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.tt-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(255, 252, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.tt-mobile-menu.is-open {
  display: flex;
}
.tt-mobile-menu a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
}
.tt-mobile-menu a:hover {
  background: var(--warm-sand);
  color: var(--dim-physical);
}
.tt-mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-deep);
  cursor: pointer;
  padding: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   1. HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.tt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(5rem + var(--section-pad)) 0 var(--section-pad);
  background: linear-gradient(
    170deg,
    var(--warm-cream) 0%,
    var(--warm-white) 40%,
    #F0F5F8 100%
  );
  overflow: hidden;
}

/* Decorative floating shapes */
.tt-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.tt-hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: floatShape 15s ease-in-out infinite;
}
.tt-hero-shape--1 {
  width: 280px; height: 280px;
  background: var(--dim-physical);
  top: 10%; right: -5%;
  animation-delay: 0s;
}
.tt-hero-shape--2 {
  width: 200px; height: 200px;
  background: var(--dim-vital);
  bottom: 15%; left: -3%;
  animation-delay: -3s;
}
.tt-hero-shape--3 {
  width: 150px; height: 150px;
  background: var(--dim-mental);
  top: 25%; left: 15%;
  animation-delay: -6s;
}
.tt-hero-shape--4 {
  width: 120px; height: 120px;
  background: var(--dim-psychic);
  bottom: 30%; right: 20%;
  animation-delay: -9s;
}
.tt-hero-shape--5 {
  width: 100px; height: 100px;
  background: var(--dim-spiritual);
  top: 50%; right: 35%;
  animation-delay: -12s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}

.tt-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.tt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(232, 118, 58, 0.08);
  border: 1px solid rgba(232, 118, 58, 0.15);
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dim-physical);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}
.tt-hero-badge svg {
  width: 18px;
  height: 18px;
}

.tt-hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.tt-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--dim-physical), var(--dim-psychic));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tt-hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.tt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--dim-physical);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(232, 118, 58, 0.2);
}
.tt-btn-primary:hover {
  background: #D06830;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 118, 58, 0.3);
}

.tt-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid var(--warm-stone);
  border-radius: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tt-btn-secondary:hover {
  border-color: var(--dim-physical);
  color: var(--dim-physical);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Dimension flower visual */
.tt-hero-visual {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.tt-flower {
  position: relative;
  width: 280px;
  height: 280px;
}

/* Subtle connector lines from center to each petal */
.tt-flower::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Top (Physical) */
    linear-gradient(to top, transparent 50%, var(--dim-physical-mid) 50%) no-repeat center center / 2px 40%,
    /* Top-right (Vital) — roughly 72° from top */
    linear-gradient(162deg, transparent 50%, var(--dim-vital-mid) 50%) no-repeat 67% 33% / 2px 38%,
    /* Bottom-right (Mental) — roughly 144° */
    linear-gradient(234deg, transparent 50%, var(--dim-mental-mid) 50%) no-repeat 63% 67% / 2px 38%,
    /* Bottom-left (Psychic) — roughly 216° */
    linear-gradient(306deg, transparent 50%, var(--dim-psychic-mid) 50%) no-repeat 37% 67% / 2px 38%,
    /* Top-left (Spiritual) — roughly 288° */
    linear-gradient(18deg, transparent 50%, var(--dim-spiritual-mid) 50%) no-repeat 33% 33% / 2px 38%;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ── All petals: center-origin + custom-property offsets ── */
.tt-flower-petal {
  --tx: 0px;
  --ty: 0px;
  --petal-size: 78px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--petal-size);
  height: var(--petal-size);
  margin-left: calc(var(--petal-size) / -2);
  margin-top:  calc(var(--petal-size) / -2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  padding: 0.5rem;
  cursor: default;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translate(var(--tx), var(--ty));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}
.tt-flower-petal:hover {
  transform: translate(var(--tx), var(--ty)) scale(1.12);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

/* ── Center ── */
.tt-flower-center {
  --petal-size: 68px;
  --tx: 0px;
  --ty: 0px;
  background: var(--text-deep);
  font-size: 0.6rem;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(44, 24, 16, 0.2);
  animation: petalPulse 4s ease-in-out infinite;
}
@keyframes petalPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(44, 24, 16, 0.2); }
  50%      { box-shadow: 0 4px 32px rgba(44, 24, 16, 0.35), 0 0 0 8px rgba(44, 24, 16, 0.06); }
}

/* ── Pentagon positions (R = 90px for mobile 280px container) ── */
/*    Angles: 0° top → 72° → 144° → 216° → 288°                */
.tt-petal-physical  { background: var(--dim-physical);  --tx:   0px; --ty: -90px; }
.tt-petal-vital     { background: var(--dim-vital);     --tx:  86px; --ty: -28px; }
.tt-petal-mental    { background: var(--dim-mental);    --tx:  53px; --ty:  73px; }
.tt-petal-psychic   { background: var(--dim-psychic);   --tx: -53px; --ty:  73px; }
.tt-petal-spiritual { background: var(--dim-spiritual); --tx: -86px; --ty: -28px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   2. OUR BELIEF
   ═══════════════════════════════════════════════════════════════ */
.tt-belief {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.tt-belief-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tt-belief-quote {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-deep);
  line-height: 1.3;
  margin-bottom: 2rem;
}
.tt-belief-quote em {
  font-style: normal;
  color: var(--dim-physical);
}

.tt-belief-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.tt-belief-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

.tt-belief-pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--warm-cream);
  border-radius: var(--card-radius);
  border: 1px solid rgba(232, 118, 58, 0.08);
  transition: all 0.3s;
}
.tt-belief-pillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.tt-belief-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: rgba(232, 118, 58, 0.1);
}

.tt-belief-pillar-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-deep);
  text-align: left;
}

/* ═══════════════════════════════════════════════════════════════
   3. THE FIVE DIMENSIONS
   ═══════════════════════════════════════════════════════════════ */
.tt-dimensions {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--warm-cream) 0%, var(--warm-white) 100%);
}

.tt-dimensions-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.tt-dim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.tt-dim-card {
  position: relative;
  padding: 2rem;
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.tt-dim-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.tt-dim-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.tt-dim-card--physical::before { background: var(--dim-physical); }
.tt-dim-card--vital::before { background: var(--dim-vital); }
.tt-dim-card--mental::before { background: var(--dim-mental); }
.tt-dim-card--psychic::before { background: var(--dim-psychic); }
.tt-dim-card--spiritual::before { background: var(--dim-spiritual); }

.tt-dim-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.tt-dim-card--physical .tt-dim-icon-wrap { background: var(--dim-physical-soft); color: var(--dim-physical); }
.tt-dim-card--vital .tt-dim-icon-wrap { background: var(--dim-vital-soft); color: var(--dim-vital); }
.tt-dim-card--mental .tt-dim-icon-wrap { background: var(--dim-mental-soft); color: var(--dim-mental); }
.tt-dim-card--psychic .tt-dim-icon-wrap { background: var(--dim-psychic-soft); color: var(--dim-psychic); }
.tt-dim-card--spiritual .tt-dim-icon-wrap { background: var(--dim-spiritual-soft); color: var(--dim-spiritual); }

.tt-dim-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.tt-dim-card--physical .tt-dim-title { color: var(--dim-physical); }
.tt-dim-card--vital .tt-dim-title { color: var(--dim-vital); }
.tt-dim-card--mental .tt-dim-title { color: var(--dim-mental); }
.tt-dim-card--psychic .tt-dim-title { color: var(--dim-psychic); }
.tt-dim-card--spiritual .tt-dim-title { color: var(--dim-spiritual); }

.tt-dim-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.tt-dim-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tt-dim-outcome {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 2rem;
  transition: all 0.2s;
}

.tt-dim-card--physical .tt-dim-outcome { background: var(--dim-physical-soft); color: var(--dim-physical); }
.tt-dim-card--vital .tt-dim-outcome { background: var(--dim-vital-soft); color: var(--dim-vital); }
.tt-dim-card--mental .tt-dim-outcome { background: var(--dim-mental-soft); color: var(--dim-mental); }
.tt-dim-card--psychic .tt-dim-outcome { background: var(--dim-psychic-soft); color: var(--dim-psychic); }
.tt-dim-card--spiritual .tt-dim-outcome { background: var(--dim-spiritual-soft); color: var(--dim-spiritual); }

/* ═══════════════════════════════════════════════════════════════
   4. FIVE PATHWAYS
   ═══════════════════════════════════════════════════════════════ */
.tt-pathways {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.tt-pathways-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.tt-pathway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.tt-pathway-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--card-radius);
  border: 1.5px solid var(--warm-stone);
  cursor: default;
  transition: all 0.3s ease;
  overflow: hidden;
}
.tt-pathway-card:hover {
  border-color: var(--dim-physical);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 118, 58, 0.08);
}

.tt-pathway-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s;
}

.tt-pathway-card:nth-child(1) .tt-pathway-num { background: var(--dim-physical-soft); color: var(--dim-physical); }
.tt-pathway-card:nth-child(2) .tt-pathway-num { background: var(--dim-vital-soft); color: var(--dim-vital); }
.tt-pathway-card:nth-child(3) .tt-pathway-num { background: var(--dim-psychic-soft); color: var(--dim-psychic); }
.tt-pathway-card:nth-child(4) .tt-pathway-num { background: var(--dim-mental-soft); color: var(--dim-mental); }
.tt-pathway-card:nth-child(5) .tt-pathway-num { background: var(--dim-spiritual-soft); color: var(--dim-spiritual); }

.tt-pathway-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.tt-pathway-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.tt-pathway-icon {
  margin-left: auto;
  font-size: 1.5rem;
  opacity: 0.5;
  flex-shrink: 0;
  transition: all 0.3s;
}
.tt-pathway-card:hover .tt-pathway-icon {
  opacity: 1;
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   5. WEEKLY JOURNEY
   ═══════════════════════════════════════════════════════════════ */
.tt-weekly {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--warm-cream) 0%, var(--warm-white) 100%);
}

.tt-weekly-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.tt-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical line */
.tt-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--dim-physical),
    var(--dim-vital),
    var(--dim-mental),
    var(--dim-psychic),
    var(--dim-spiritual),
    var(--text-deep)
  );
  border-radius: 3px;
}

.tt-timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1rem 0;
  padding-left: 56px;
}

.tt-timeline-dot {
  position: absolute;
  left: 12px;
  top: 1.25rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1;
}

.tt-timeline-item:nth-child(1) .tt-timeline-dot { background: var(--dim-physical); }
.tt-timeline-item:nth-child(2) .tt-timeline-dot { background: var(--dim-vital); }
.tt-timeline-item:nth-child(3) .tt-timeline-dot { background: var(--dim-mental); }
.tt-timeline-item:nth-child(4) .tt-timeline-dot { background: var(--dim-psychic); }
.tt-timeline-item:nth-child(5) .tt-timeline-dot { background: var(--dim-spiritual); }
.tt-timeline-item:nth-child(6) .tt-timeline-dot { background: var(--text-deep); }

.tt-timeline-content {
  flex: 1;
  background: #fff;
  border-radius: var(--card-radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s;
}
.tt-timeline-content:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.tt-timeline-day {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.tt-timeline-item:nth-child(1) .tt-timeline-day { color: var(--dim-physical); }
.tt-timeline-item:nth-child(2) .tt-timeline-day { color: var(--dim-vital); }
.tt-timeline-item:nth-child(3) .tt-timeline-day { color: var(--dim-mental); }
.tt-timeline-item:nth-child(4) .tt-timeline-day { color: var(--dim-psychic); }
.tt-timeline-item:nth-child(5) .tt-timeline-day { color: var(--dim-spiritual); }
.tt-timeline-item:nth-child(6) .tt-timeline-day { color: var(--text-deep); }

.tt-timeline-focus {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-deep);
  margin-bottom: 0.25rem;
}

.tt-timeline-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   6. LEARNING PILLARS
   ═══════════════════════════════════════════════════════════════ */
.tt-pillars {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.tt-pillars-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.tt-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tt-pillar-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.tt-pillar-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.tt-pillar-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: transform 0.3s;
}
.tt-pillar-card:hover .tt-pillar-emoji {
  transform: scale(1.2) rotate(-5deg);
}

.tt-pillar-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-deep);
  margin-bottom: 0.25rem;
}

.tt-pillar-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   7. MAKER & INNOVATION
   ═══════════════════════════════════════════════════════════════ */
.tt-maker {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tt-maker::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.tt-maker .tt-section-tag { color: rgba(255,255,255,0.5); }
.tt-maker .tt-section-tag::before { background: var(--dim-vital); }
.tt-maker .tt-section-title { color: #fff; }
.tt-maker .tt-section-subtitle { color: rgba(255,255,255,0.6); }

.tt-maker-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.tt-maker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.tt-maker-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--card-radius);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  cursor: default;
}
.tt-maker-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232, 118, 58, 0.3);
  transform: translateY(-2px);
}

.tt-maker-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.tt-maker-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.tt-maker-card p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   8. TINKERTOLI DIDI
   ═══════════════════════════════════════════════════════════════ */
.tt-didi {
  padding: var(--section-pad) 0;
  background: var(--warm-cream);
}

.tt-didi-inner {
  max-width: 900px;
  margin: 0 auto;
}

.tt-didi-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tt-didi-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.tt-didi-visual {
  display: flex;
  justify-content: center;
}

.tt-didi-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dim-physical-soft), var(--dim-psychic-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(232, 118, 58, 0.12);
}
.tt-didi-avatar::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--dim-physical-mid);
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.tt-didi-avatar-inner {
  font-size: 5rem;
  line-height: 1;
}

.tt-didi-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tt-didi-role {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s;
}
.tt-didi-role:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.tt-didi-role-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.tt-didi-role:nth-child(1) .tt-didi-role-icon { background: var(--dim-physical-soft); }
.tt-didi-role:nth-child(2) .tt-didi-role-icon { background: var(--dim-vital-soft); }
.tt-didi-role:nth-child(3) .tt-didi-role-icon { background: var(--dim-mental-soft); }
.tt-didi-role:nth-child(4) .tt-didi-role-icon { background: var(--dim-psychic-soft); }

.tt-didi-role-text h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}
.tt-didi-role-text p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.tt-didi-note {
  margin-top: 2rem;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  color: var(--dim-physical);
}

/* ═══════════════════════════════════════════════════════════════
   9. VISION & MISSION
   ═══════════════════════════════════════════════════════════════ */
.tt-vision {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.tt-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.tt-vision-card {
  padding: 2.5rem 2rem;
  border-radius: var(--card-radius);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.tt-vision-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.tt-vision-card--vision {
  background: linear-gradient(135deg, var(--dim-spiritual-soft), var(--dim-psychic-soft));
  border-color: rgba(139, 95, 191, 0.1);
}
.tt-vision-card--mission {
  background: linear-gradient(135deg, var(--dim-physical-soft), var(--dim-vital-soft));
  border-color: rgba(232, 118, 58, 0.1);
}

.tt-vision-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.tt-vision-card--vision .tt-vision-label { color: var(--dim-spiritual); }
.tt-vision-card--mission .tt-vision-label { color: var(--dim-physical); }

.tt-vision-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tt-vision-text {
  font-size: clamp(1.1rem, 2.5vw, 1.375rem);
  font-weight: 500;
  color: var(--text-deep);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   10. PLATFORM SUPPORT
   ═══════════════════════════════════════════════════════════════ */
.tt-platform {
  padding: var(--section-pad) 0;
  background: var(--warm-cream);
}

.tt-platform-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1rem;
}

.tt-platform-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.tt-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.tt-platform-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.tt-platform-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.tt-platform-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.625rem;
  background: var(--warm-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.tt-platform-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
}

/* ═══════════════════════════════════════════════════════════════
   11. FINAL MANTRA
   ═══════════════════════════════════════════════════════════════ */
.tt-mantra {
  padding: var(--section-pad) 0;
  background: linear-gradient(
    160deg,
    var(--warm-cream) 0%,
    #F7ECE1 30%,
    #EDE5F5 60%,
    #E8F0FA 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tt-mantra-lines {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tt-mantra-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.tt-mantra-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tt-mantra-line:nth-child(1) { transition-delay: 0.1s; }
.tt-mantra-line:nth-child(2) { transition-delay: 0.25s; }
.tt-mantra-line:nth-child(3) { transition-delay: 0.4s; }
.tt-mantra-line:nth-child(4) { transition-delay: 0.55s; }
.tt-mantra-line:nth-child(5) { transition-delay: 0.7s; }

.tt-mantra-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tt-mantra-line:nth-child(1) .tt-mantra-dot { background: var(--dim-physical); }
.tt-mantra-line:nth-child(1) { color: var(--dim-physical); }
.tt-mantra-line:nth-child(2) .tt-mantra-dot { background: var(--dim-vital); }
.tt-mantra-line:nth-child(2) { color: var(--dim-vital); }
.tt-mantra-line:nth-child(3) .tt-mantra-dot { background: var(--dim-mental); }
.tt-mantra-line:nth-child(3) { color: var(--dim-mental); }
.tt-mantra-line:nth-child(4) .tt-mantra-dot { background: var(--dim-psychic); }
.tt-mantra-line:nth-child(4) { color: var(--dim-psychic); }
.tt-mantra-line:nth-child(5) .tt-mantra-dot { background: var(--dim-spiritual); }
.tt-mantra-line:nth-child(5) { color: var(--dim-spiritual); }

.tt-mantra-ending {
  font-size: clamp(1.375rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-deep);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.3;
}

.tt-mantra-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--dim-physical), var(--dim-psychic));
  border: none;
  border-radius: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(212, 99, 154, 0.25);
}
.tt-mantra-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 99, 154, 0.35);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.tt-footer {
  padding: 3rem 0 2rem;
  background: var(--text-deep);
  color: rgba(255,255,255,0.6);
}

.tt-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.tt-footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.tt-footer-logo span {
  color: var(--dim-physical);
}

.tt-footer-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.4);
}

.tt-footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (640px+)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .tt-dim-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tt-pathway-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* The last pathway card spans full */
  .tt-pathway-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .tt-pillar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tt-maker-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tt-platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tt-flower {
    width: 340px;
    height: 340px;
  }
  .tt-flower-petal {
    --petal-size: 96px;
    font-size: 0.75rem;
  }
  .tt-flower-center {
    --petal-size: 82px;
    font-size: 0.7rem;
  }
  /* R = 112px for tablet */
  .tt-petal-physical  { --tx:   0px; --ty: -112px; }
  .tt-petal-vital     { --tx: 107px; --ty:  -35px; }
  .tt-petal-mental    { --tx:  66px; --ty:   91px; }
  .tt-petal-psychic   { --tx: -66px; --ty:   91px; }
  .tt-petal-spiritual { --tx:-107px; --ty:  -35px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Desktop (1024px+)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .tt-nav-links {
    display: flex;
  }
  .tt-nav-cta {
    display: inline-flex;
  }
  .tt-nav-hamburger {
    display: none;
  }

  .tt-dim-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .tt-pathway-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .tt-pathway-card {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.25rem;
  }
  .tt-pathway-card:last-child {
    grid-column: auto;
    max-width: 100%;
    justify-self: auto;
  }
  .tt-pathway-icon {
    margin-left: 0;
  }

  .tt-maker-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tt-didi-content {
    grid-template-columns: auto 1fr;
  }

  .tt-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tt-timeline {
    flex-direction: row;
    gap: 0;
  }
  .tt-timeline::before {
    top: 24px;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 3px;
    background: linear-gradient(
      to right,
      var(--dim-physical),
      var(--dim-vital),
      var(--dim-mental),
      var(--dim-psychic),
      var(--dim-spiritual),
      var(--text-deep)
    );
  }
  .tt-timeline-item {
    flex: 1;
    flex-direction: column;
    padding-left: 0;
    padding-top: 56px;
    align-items: center;
    text-align: center;
  }
  .tt-timeline-dot {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
  }
  .tt-timeline-content:hover {
    transform: translateY(-4px);
  }

  .tt-flower {
    width: 420px;
    height: 420px;
  }
  .tt-flower-petal {
    --petal-size: 114px;
    font-size: 0.8rem;
  }
  .tt-flower-center {
    --petal-size: 96px;
    font-size: 0.75rem;
  }
  /* R = 140px for desktop */
  .tt-petal-physical  { --tx:   0px; --ty: -140px; }
  .tt-petal-vital     { --tx: 133px; --ty:  -43px; }
  .tt-petal-mental    { --tx:  82px; --ty:  113px; }
  .tt-petal-psychic   { --tx: -82px; --ty:  113px; }
  .tt-petal-spiritual { --tx:-133px; --ty:  -43px; }
}

/* ── Smooth scrolling ── */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ── Focus accessibility ── */
.tt-home *:focus-visible {
  outline: 2px solid var(--dim-physical);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Print cleanup ── */
@media print {
  .tt-nav, .tt-hero-shapes, .tt-mobile-menu { display: none !important; }
  .tt-home { color: #000; background: #fff; }
}
