/* ================================================================
   Théo edu. · Young Entrepreneurs Camp 2026
   Palette: beige #FEEFE5, orange #D86343, ink #1A1A1A
   ================================================================ */

@font-face {
  font-family: 'JinXuanLatte';
  src: url('assets/jf-jinxuanlatte.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #FEEFE5;
  --bg-2: #FFF8F1;
  --bg-3: #F9DFD0;
  --ink: #1A1A1A;
  --ink-2: #3D3D3D;
  --ink-3: #6b6b6b;
  --orange: #D86343;
  --orange-dark: #B84B2E;
  --orange-soft: #F5B5A0;
  --paper: #FFFDFA;
  --shadow: 0 4px 0 0 var(--ink);
  --shadow-lg: 0 6px 0 0 var(--ink);
  --shadow-xl: 0 10px 0 0 var(--ink);
  --border: 2.5px solid var(--ink);
  --border-thick: 3.5px solid var(--ink);
  --radius: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'JinXuanLatte', 'Noto Sans TC', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

img { max-width: 100%; display: block; }

/* =============== TYPOGRAPHY =============== */
h2.h2 {
  font-family: 'JinXuanLatte', 'Noto Sans TC', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 18px 0 14px;
  text-wrap: balance;
}
h2.h2 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
h2.h2 u {
  text-decoration: none;
  background: var(--orange);
  color: #fff;
  padding: 0 10px;
  border-radius: 6px;
  display: inline-block;
  transform: rotate(-1.5deg);
}
.h2-light { color: #FEEFE5; }

.section-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-3);
  max-width: 620px;
  margin-bottom: 48px;
}
.section-sub.light { color: #F7D6C4; }

.tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 7px 14px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  margin-bottom: 4px;
  white-space: nowrap;
}
.tag.light { background: var(--orange); color: #fff; }

/* =============== BUTTONS =============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'JinXuanLatte', 'Noto Sans TC', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border: var(--border-thick);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 0 0 0 0 var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-ghost:hover { background: #fff; transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink); }
.btn-big {
  font-size: 20px;
  padding: 20px 36px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 0 0 var(--ink);
}
.btn-big:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 0 var(--ink); }

/* =============== NAV =============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 239, 229, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid rgba(26, 26, 26, 0.08);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand-accent { color: var(--orange); }
.brand-sub { font-size: 13px; color: var(--ink-3); font-weight: 500; letter-spacing: 0.05em; }
.brand.big { font-size: 32px; }
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 0;
  object-fit: contain;
  border: none;
  background: transparent;
  align-self: center;
  margin-right: 2px;
}
.brand.big .brand-logo {
  width: 56px;
  height: 56px;
}

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--orange); }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* =============== HERO =============== */
.hero {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  padding: 8px 16px;
  background: #fff;
  border: var(--border);
  border-radius: 100px;
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: 'JinXuanLatte', 'Noto Sans TC', sans-serif;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-title .t-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-title .t-xs {
  font-size: clamp(36px, 4.4vw, 64px);
  color: var(--ink);
  letter-spacing: 0.04em;
  transform: translateY(-0.08em) rotate(-3deg);
  display: inline-block;
}
.hero-title .t-main {
  font-size: clamp(64px, 9vw, 128px);
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-title .t-main::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 0.1em;
  height: 0.18em;
  background: var(--orange-soft, #F9D9C9);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.55;
}
.hero-title .t-sub {
  font-size: clamp(42px, 5.2vw, 72px);
  color: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-left: 0.05em;
}
.hero-title .t-sub::before {
  content: "";
  display: inline-block;
  width: 0.55em;
  height: 0.08em;
  background: var(--ink);
  border-radius: 4px;
  margin-right: 2px;
}
.hero-title .t-underline {
  display: inline-block;
  width: 0.6em;
  height: 0.08em;
  background: var(--ink);
  border-radius: 4px;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-sub .year {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 2px 12px;
  border-radius: 6px;
  margin-left: 6px;
  transform: rotate(-2deg);
}

.hero-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--ink-2);
}
.hero-lede b { color: var(--orange); font-weight: 700; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  max-width: 520px;
}

.hero-proof {
  display: flex;
  gap: 42px;
  padding: 22px 28px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 0 var(--ink);
  justify-content: space-around;
  align-items: center;
  max-width: 520px;
}
.hero-proof > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  text-align: center;
}
.hero-proof b {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.hero-proof span {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}

/* Hero art */
.hero-art {
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, var(--orange-soft) 0%, transparent 62%);
  opacity: 0.55;
  border-radius: 50%;
}
.hero-trio {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(8px 10px 0 rgba(26,26,26,0.18));
  animation: trio-bob 6s ease-in-out infinite;
}
@keyframes trio-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-rocket {
  position: absolute;
  top: 8%;
  right: -20px;
  width: 90px;
  height: 150px;
  z-index: 3;
}
.hero-coin {
  position: absolute;
  bottom: 10%;
  left: -10px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 30% 30%, #FFD89B, #D4A155);
  border: var(--border-thick);
  border-radius: 50%;
  box-shadow: 4px 4px 0 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--ink);
  z-index: 3;
}

.float { animation: float 4s ease-in-out infinite; }
.float-slow { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

.hero-coin.float-slow { animation: float-coin 5s ease-in-out infinite; }
@keyframes float-coin {
  0%,100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

/* doodles */
.doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}
.doodle-star {
  top: 14%; left: 48%;
  width: 50px; height: 50px;
  animation: spin-slow 20s linear infinite;
}
.doodle-spark {
  top: 22%; left: 6%;
  width: 40px; height: 40px;
  animation: spin-slow 14s linear infinite reverse;
}
.doodle-squig {
  bottom: 20%; left: 38%;
  width: 120px; height: 30px;
  opacity: 0.5;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.section-divider {
  display: block;
  width: 100%;
  height: 40px;
  margin-top: 40px;
}

/* =============== CONCEPT =============== */
.concept {
  background: var(--bg-2);
  padding: 120px 0;
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
}
.concept-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  margin-top: 40px;
  align-items: start;
}
.concept-lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.7;
  color: var(--ink-2);
}
.concept-lede b { color: var(--ink); font-weight: 700; background: var(--orange-soft); padding: 0 4px; }
.concept-points { display: flex; flex-direction: column; gap: 24px; }
.point {
  background: #fff;
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  transition: transform 0.2s;
}
.point:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 0 var(--ink); }
.point-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.point h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.point p { font-size: 15px; color: var(--ink-3); line-height: 1.55; }

/* =============== CURRICULUM =============== */
.curriculum {
  padding: 120px 0;
  position: relative;
}
.days {
  display: flex;
  gap: 12px;
  margin: 32px 0 36px;
  flex-wrap: wrap;
}
.day-tab {
  flex: 1;
  min-width: 130px;
  background: #fff;
  border: var(--border-thick);
  border-radius: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
}
.day-tab:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink); }
.day-tab.active {
  background: var(--ink);
  color: var(--bg);
}
.day-tab.active .d-num { color: var(--orange-soft); }
.day-tab .d-num {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  white-space: nowrap;
}
.day-tab .d-title {
  font-family: 'JinXuanLatte', 'Noto Sans TC', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.day-tab .d-title.highlight { color: var(--orange); }
.day-tab.active .d-title.highlight { color: var(--orange-soft); }

.day-panels { position: relative; min-height: 400px; }
.day-panel {
  display: none;
  background: var(--paper);
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: var(--shadow-lg);
  animation: panelIn 0.4s cubic-bezier(.2,.9,.3,1) both;
}
.day-panel.active { display: grid; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.day-panel {
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.dp-meta .dp-date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
}
.dp-meta h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin: 8px 0 14px;
  text-wrap: balance;
}
.dp-meta p {
  color: var(--ink-3);
  line-height: 1.65;
}
.dp-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dp-block {
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  background: #fff;
}
.dp-block.morning { background: #FFF4EC; }
.dp-block.afternoon { background: #FFE6DA; }
.dp-block.showday { background: var(--orange); color: #fff; border-color: var(--ink); }
.dp-block.showday .dpb-tag { color: #FEEFE5; background: rgba(26,26,26,0.35); }
.dpb-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  margin-bottom: 14px;
}
.dp-block h4 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.dp-block ul {
  list-style: none;
  padding: 0;
}
.dp-block li {
  padding: 4px 0 4px 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}
.dp-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.dp-block.showday li::before { color: #FEEFE5; }

/* =============== TD SECTION =============== */
.td-section {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.td-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(216,99,67,0.18), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(216,99,67,0.12), transparent 40%);
  pointer-events: none;
}
.td-headline-1, .td-headline-2 { display: inline-block; }
.td-headline-arrow {
  display: inline-block;
  margin: 0 18px;
  color: var(--orange);
  font-weight: 400;
}
.td-headline-2 { color: var(--orange); }

.td-counter-wrap {
  background: rgba(255,255,255,0.04);
  border: 2.5px solid rgba(255,255,255,0.15);
  border-radius: 28px;
  padding: 48px;
  margin: 48px 0 56px;
  position: relative;
  z-index: 2;
}
.td-counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
}
.td-sign {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
}
.td-value {
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 0%, #F5B5A0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.td-progress {
  position: relative;
  height: 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  margin: 48px 0 60px;
}
.td-progress-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 10%;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  border-radius: 100px;
  transition: width 2.4s cubic-bezier(.2,.9,.3,1);
}
.td-marker {
  position: absolute;
  top: 100%;
  margin-top: 16px;
  transform: translateX(-50%);
  text-align: center;
  font-family: 'Inter', sans-serif;
}
.td-marker span { font-size: 11px; letter-spacing: 0.15em; color: rgba(255,255,255,0.55); font-weight: 600; display: block; }
.td-marker b { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.td-marker-start { left: 0; transform: translateX(0); text-align: left; }
.td-marker-end { right: 0; left: auto; transform: translateX(0); text-align: right; }
.td-marker-end b { color: var(--orange); }

.td-loop-hint {
  display: block;
  text-align: center;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.td-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.td-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.td-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.td-card-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.td-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.td-card p {
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  line-height: 1.6;
}
.td-card b { color: var(--orange); font-weight: 700; }

/* =============== SHOW DAY =============== */
section.showday {
  padding: 120px 0;
  background: var(--bg);
}
.showday-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showday-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showday-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: var(--border);
  border-radius: 14px;
  font-size: 15px;
}
.showday-list .bullet {
  width: 32px; height: 32px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.showday-list b { font-weight: 700; }

.showday-art {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showday-trio {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(8px 10px 0 rgba(26,26,26,0.18));
  animation: trio-bob 6s ease-in-out infinite;
}
.showday-art::before {
  content: "";
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle at 50% 55%, var(--orange-soft) 0%, transparent 62%);
  opacity: 0.5;
  z-index: 1;
}
.showday-badge {
  position: absolute;
  bottom: 6%;
  left: 2%;
  z-index: 3;
  background: var(--orange);
  color: #fff;
  border: var(--border-thick);
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-6deg);
  text-align: center;
  font-family: 'Inter', sans-serif;
  animation: badge-wobble 4s ease-in-out infinite;
}
.showday-badge .sb-top {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #FFE6D8;
}
.showday-badge .sb-mid {
  display: block;
  font-family: 'JinXuanLatte', 'Noto Sans TC', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 2px 0;
}
.showday-badge .sb-bot {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #FFE6D8;
}
@keyframes badge-wobble {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50%      { transform: rotate(4deg) translateY(-6px); }
}

/* =============== TEACHERS =============== */
.teachers {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
}
.teacher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.teacher-card {
  background: #fff;
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: flex-start;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}
.teacher-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 0 var(--ink); }
.teacher-avatar {
  position: relative;
  width: 110px;
  height: 110px;
}
.avatar-inner {
  width: 100%; height: 100%;
  background: var(--orange);
  border: var(--border-thick);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.teacher-avatar.alt .avatar-inner { background: var(--ink); }
.teacher-avatar.alt2 .avatar-inner { background: #C44A2D; }
.teacher-avatar.alt3 .avatar-inner { background: #FEEFE5; color: var(--ink); border: var(--border-thick); }
.avatar-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: #fff;
  border: var(--border);
  border-radius: 100px;
  padding: 4px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.teacher-body h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 2px;
}
.teacher-role {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.teacher-bio {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.teacher-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.teacher-tags span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--bg-3);
  border-radius: 100px;
}

.class-size {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 48px;
  padding: 40px 44px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.cs-big {
  font-family: 'Inter', sans-serif;
  font-size: clamp(90px, 10vw, 140px);
  font-weight: 900;
  color: var(--orange);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.cs-text {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}
.cs-text b { display: block; color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 6px; }

/* =============== PRICING =============== */
.pricing {
  padding: 120px 0;
}
.dates-strip {
  margin: 28px 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: #fff;
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.ds-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 16px;
  border-right: 1.5px dashed rgba(26,26,26,0.15);
}
.ds-item:last-child { border-right: 0; padding-right: 0; }
.ds-label {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
}
.ds-date {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.countdown-banner {
  margin: 24px 0 40px;
  padding: 16px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.cb-label { font-size: 13px; letter-spacing: 0.08em; color: var(--orange-soft); margin-right: 10px; }
.cb-days { font-size: 22px; font-weight: 800; color: var(--orange); font-variant-numeric: tabular-nums; }
.cb-unit { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; margin-right: 4px; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
}
.price-card {
  position: relative;
  background: var(--paper);
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}
.price-card:hover { transform: translate(-4px, -4px); box-shadow: 10px 10px 0 0 var(--ink); }
.price-card.featured { background: #fff; }
.pc-ribbon {
  position: absolute;
  top: -15px;
  left: 28px;
  background: var(--orange);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 7px 14px;
  border: var(--border);
  border-radius: 100px;
}
.pc-ribbon.alt { background: var(--ink); }
.pc-city {
  font-size: 32px;
  font-weight: 900;
  margin: 10px 0 4px;
  letter-spacing: -0.02em;
}
.pc-addr {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.pc-dates {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.pc-dates b { font-weight: 800; }
.pc-prices {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--bg-2);
  border: 2px dashed var(--ink);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  align-items: center;
}
.pc-earlybird { flex: 1.2; }
.pc-regular { flex: 1; text-align: right; padding-left: 18px; border-left: 1.5px solid rgba(26,26,26,0.15); }
.pc-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  background: var(--orange);
  color: #fff;
  border-radius: 100px;
  margin-bottom: 8px;
}
.pc-badge.muted { background: transparent; color: var(--ink-3); padding-left: 0; padding-right: 0; }
.pc-num {
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pc-regular .pc-num { justify-content: flex-end; }
.pc-unit { font-size: 13px; font-weight: 600; color: var(--ink-3); }
.pc-num b {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pc-num.strike {
  color: var(--ink-3);
  position: relative;
}
.pc-num.strike b { text-decoration: line-through; text-decoration-color: var(--orange); text-decoration-thickness: 2px; font-weight: 700; font-size: 26px; }
.pc-limit {
  font-size: 12px;
  color: var(--orange-dark);
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.pc-incl {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pc-incl li {
  font-size: 14.5px;
  color: var(--ink-2);
}
.pc-cta { width: 100%; justify-content: center; }

.pricing-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
}

/* =============== FAQ =============== */
.faq { padding: 120px 0; background: var(--bg-2); border-top: 2.5px solid var(--ink); }
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: box-shadow 0.2s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-body { margin-top: 12px; color: var(--ink-3); font-size: 15px; line-height: 1.65; }

/* =============== CTA =============== */
.cta {
  background: var(--orange);
  color: #fff;
  padding: 120px 0;
  border-top: 2.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0 30px, rgba(255,255,255,0.04) 30px 32px);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-copy p {
  font-size: 18px;
  line-height: 1.65;
  margin: 20px 0 32px;
  max-width: 520px;
  opacity: 0.9;
}
.cta-small {
  font-size: 13px !important;
  margin-top: 18px !important;
  opacity: 0.7 !important;
}
.cta-small code {
  background: rgba(0,0,0,0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.cta-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-art::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle at 50% 55%, rgba(245,181,160,0.35) 0%, transparent 65%);
  z-index: 1;
  border-radius: 50%;
}
.cta-trio {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(6px 8px 0 rgba(0,0,0,0.25));
  animation: trio-bob 6s ease-in-out infinite;
}

/* =============== FOOTER =============== */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* =============== STICKY CTA =============== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  padding: 14px 22px;
  background: var(--orange);
  color: #fff;
  border: var(--border-thick);
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.3s;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover { transform: translate(-2px, -2px); box-shadow: 6px 8px 0 0 var(--ink); }

/* =============== FLOATING CHAR =============== */
.float-char {
  position: fixed;
  right: -30px;
  bottom: 10%;
  width: 140px;
  height: 280px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s;
}
.float-char.active { opacity: 0.55; }
.float-char img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.15s ease-out;
}

/* =============== REVEAL =============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.9,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 960px) {
  .hero-grid, .concept-grid, .showday-grid, .teacher-grid, .cta-grid, .pricing-grid, .td-cards { grid-template-columns: 1fr; gap: 40px; }
  .day-panel.active { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 32px 0 64px; }
  .hero-art { height: auto; max-width: 420px; margin: 0 auto; width: 100%; padding: 0; }
  .hero-blob { display: none; }
  .hero-trio { max-width: 380px; width: 100%; }
  .hero-rocket { width: 74px; height: 120px; top: -10px; right: -8px; }
  .hero-coin { width: 72px; height: 72px; font-size: 22px; left: -4px; bottom: 8%; }
  .hero-proof { flex-wrap: wrap; gap: 24px; padding: 18px 22px; }
  .hero-proof b { font-size: 22px; }
  .concept, .curriculum, .td-section, section.showday, .teachers, .pricing, .faq, .cta { padding: 80px 0; }
  .concept-grid { gap: 32px; }
  .class-size { grid-template-columns: 1fr; gap: 14px; padding: 28px; text-align: center; }
  .cs-big { font-size: 110px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-legal { flex-direction: column; gap: 8px; padding: 20px 22px 0; text-align: center; }
  .day-panel { padding: 28px 24px; }
  .price-card { padding: 28px 24px; }
  .pc-prices { flex-direction: column; gap: 14px; align-items: flex-start; }
  .pc-regular { padding-left: 0; border-left: none; border-top: 1.5px dashed rgba(26,26,26,0.15); padding-top: 14px; text-align: left; width: 100%; }
  .pc-regular .pc-num { justify-content: flex-start; }
  .float-char { display: none; }
  .container { padding: 0 22px; }
  .showday-art { height: auto; padding: 20px 0; min-height: 360px; }
  .showday-trio { max-width: 380px; }
  .showday-badge { bottom: 2%; left: 2%; padding: 10px 14px; }
  .showday-badge .sb-mid { font-size: 18px; }
  .cta-art { max-width: 360px; margin: 0 auto; }
  .cta-trio { max-width: 320px; }
  .cta-grid { gap: 40px; }
  .dates-strip { grid-template-columns: 1fr 1fr; gap: 14px 18px; padding: 18px 20px; }
  .ds-item { border-right: 0; padding-right: 0; }
  .ds-item:nth-child(odd) { border-right: 1.5px dashed rgba(26,26,26,0.15); padding-right: 14px; }
}

@media (max-width: 640px) {
  /* ---- Nav ---- */
  .nav-inner { padding: 12px 18px; gap: 10px; }
  .brand { font-size: 18px; }
  .brand-sub { font-size: 11px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }

  /* ---- Hero ---- */
  .hero { padding: 24px 0 56px; }
  .hero-grid { padding: 0 22px; gap: 24px; min-height: auto; }

  /* Mobile ordering: eyebrow → title → sub → lede → ART → ctas → proof */
  .hero-copy { display: contents; }
  .eyebrow        { order: 1; }
  .hero-title     { order: 2; }
  .hero-sub       { order: 3; }
  .hero-lede      { order: 4; }
  .hero-art       { order: 5; margin-top: 4px; margin-bottom: 4px; }
  .hero-ctas      { order: 6; }
  .hero-proof     { order: 7; }

  .eyebrow { font-size: 10px; padding: 6px 12px; letter-spacing: 0.16em; margin-bottom: 0; }
  .hero-title { margin-bottom: 0; gap: 2px; }
  .hero-sub { font-size: 16px; margin-bottom: 0; }
  .hero-sub .year { font-size: 14px; padding: 1px 9px; }
  .hero-lede { font-size: 15px; line-height: 1.65; margin-bottom: 0; }
  .hero-ctas { width: 100%; gap: 10px; margin-bottom: 0; }
  .hero-ctas .btn { flex: 1 1 auto; min-width: 0; padding: 13px 18px; font-size: 14.5px; }
  .hero-proof { gap: 18px; padding: 18px 20px; justify-content: space-around; margin-top: 8px; text-align: center; }
  .hero-proof > div { flex: 1; min-width: 0; align-items: center; }
  .hero-proof b { font-size: 20px; }
  .hero-proof span { font-size: 11px; }

  /* ---- Section headers ---- */
  h2.h2 { font-size: 30px; line-height: 1.15; }
  .section-sub { font-size: 14px; margin-bottom: 28px; }
  .tag { font-size: 10px; padding: 5px 11px; letter-spacing: 0.14em; }

  /* ---- Concept ---- */
  .concept { padding: 64px 0; }
  .point { grid-template-columns: 44px 1fr; gap: 14px; padding: 20px 22px; }
  .point-num { font-size: 20px; }
  .point h3 { font-size: 16px; }
  .point p { font-size: 14px; }
  .concept-lede { font-size: 17px; }

  /* ---- Curriculum ---- */
  .curriculum { padding: 64px 0; }
  .curriculum .container { display: flex; flex-direction: column; }
  .curriculum .tag { order: 0; }
  .curriculum > .container > .h2 { order: 1; }
  .curriculum .section-sub { order: 2; }
  .days, .day-panels { display: contents; }
  .days { flex-direction: column; gap: 8px; margin: 24px 0 24px; }
  .day-tab { width: 100%; flex-direction: row; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 18px; box-shadow: 0 3px 0 0 var(--ink); margin-top: 8px; }
  .day-tab[data-day="1"] { order: 10; margin-top: 24px; }
  .day-panel[data-panel="1"] { order: 11; }
  .day-tab[data-day="2"] { order: 20; }
  .day-panel[data-panel="2"] { order: 21; }
  .day-tab[data-day="3"] { order: 30; }
  .day-panel[data-panel="3"] { order: 31; }
  .day-tab[data-day="4"] { order: 40; }
  .day-panel[data-panel="4"] { order: 41; }
  .day-tab[data-day="5"] { order: 50; }
  .day-panel[data-panel="5"] { order: 51; }
  .day-panels { min-height: 0; }
  .day-tab .d-num { font-size: 13px; }
  .day-tab .d-title { font-size: 18px; }
  .day-panel { padding: 24px 22px; border-radius: 18px; margin-top: 10px; }
  .day-panel:not(.active) { display: none; }
  .dp-meta h3 { font-size: 22px; margin: 8px 0 10px; }
  .dp-meta p { font-size: 14.5px; }
  .dp-block { padding: 18px 20px; }
  .dp-block h4 { font-size: 20px; }
  .dp-block li { font-size: 15px; }
  .dpb-tag { font-size: 12px; padding: 5px 12px; }

  /* ---- TD ---- */
  .td-section { padding: 64px 0; }
  .td-headline-arrow { display: block; margin: 8px 0; }
  .td-headline-1, .td-headline-2 { display: block; }
  .td-counter-wrap { padding: 28px 18px; border-radius: 20px; margin: 32px 0 40px; }
  .td-counter { gap: 8px; flex-direction: column; align-items: center; margin-bottom: 20px; }
  .td-value { font-size: 64px; }
  .td-sign { font-size: 24px; }
  .td-progress { margin: 28px 0 48px; height: 10px; }
  .td-marker span { font-size: 10px; }
  .td-marker b { font-size: 15px; }
  .td-loop-hint { font-size: 11px; }
  .td-cards { gap: 14px; }
  .td-card { padding: 22px 22px; }
  .td-card-icon { font-size: 30px; }
  .td-card h4 { font-size: 17px; }
  .td-card p { font-size: 14px; }

  /* ---- Show Day ---- */
  section.showday { padding: 64px 0; }
  .showday-list li { grid-template-columns: 28px 1fr; padding: 12px 14px; font-size: 14px; gap: 10px; }
  .showday-list .bullet { width: 28px; height: 28px; font-size: 12px; }
  .showday-art { flex-direction: column; align-items: center; min-height: 320px; }
  .showday-trio { max-width: 300px; }
  .showday-badge { bottom: 0; left: 0; padding: 8px 12px; transform: rotate(-4deg); }
  .showday-badge .sb-mid { font-size: 15px; }
  .showday-badge .sb-top, .showday-badge .sb-bot { font-size: 9px; }

  /* ---- Teachers ---- */
  .teachers { padding: 64px 0; }
  .teacher-card { grid-template-columns: 72px 1fr; gap: 16px; padding: 20px 18px; }
  .teacher-avatar { width: 72px; height: 72px; }
  .avatar-inner { font-size: 32px; }
  .avatar-badge { font-size: 9px; padding: 3px 7px; bottom: -4px; right: -4px; }
  .teacher-body h3 { font-size: 20px; }
  .teacher-role { font-size: 12px; margin-bottom: 10px; }
  .teacher-bio { font-size: 13.5px; margin-bottom: 12px; }
  .teacher-tags span { font-size: 10px; padding: 3px 8px; }
  .class-size { padding: 28px 22px; margin-top: 32px; }
  .cs-big { font-size: 90px; }
  .cs-text { font-size: 14.5px; }
  .cs-text b { font-size: 18px; }

  /* ---- Pricing ---- */
  .pricing { padding: 64px 0; }
  .countdown-banner { padding: 12px 16px; border-radius: 16px; gap: 8px; font-size: 12px; }
  .cb-label { font-size: 11px; width: 100%; text-align: center; margin-right: 0; margin-bottom: 4px; }
  .cb-days { font-size: 19px; }
  .cb-unit { font-size: 10px; }
  .price-card { padding: 24px 20px 22px; border-radius: 18px; }
  .pc-ribbon { font-size: 10px; padding: 6px 11px; top: -13px; left: 20px; }
  .pc-city { font-size: 26px; }
  .pc-addr { font-size: 13px; margin-bottom: 20px; }
  .pc-prices { padding: 16px; border-radius: 12px; }
  .pc-num b { font-size: 32px; }
  .pc-num.strike b { font-size: 22px; }
  .pc-incl li { font-size: 13.5px; }
  .pc-cta { padding: 13px 20px; font-size: 15px; }

  /* ---- FAQ ---- */
  .faq { padding: 64px 0; }
  .faq details { padding: 16px 18px; }
  .faq summary { font-size: 15px; gap: 10px; }
  .faq summary::after { font-size: 22px; }
  .faq-body { font-size: 14px; }

  /* ---- CTA ---- */
  .cta { padding: 64px 0; }
  .cta-copy p { font-size: 15.5px; margin: 16px 0 24px; }
  .btn-big { font-size: 17px; padding: 16px 24px; }
  .cta-small { font-size: 11px !important; }
  .cta-small code { font-size: 10px; word-break: break-all; }

  /* ---- Footer ---- */
  .footer { padding: 56px 0 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .brand.big { font-size: 24px; }
  .footer-col h5 { font-size: 10px; margin-bottom: 10px; }
  .footer-col a { font-size: 13px; }
  .footer-legal { font-size: 11px; padding: 16px 22px 0; }

  /* ---- Sticky CTA ---- */
  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
    padding: 14px 18px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .hero-title { font-size: 48px; }
  h2.h2 { font-size: 26px; }
  .td-value { font-size: 54px; }
  .cs-big { font-size: 80px; }
  .pc-city { font-size: 22px; }
  .pc-num b { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}
