/* ══════════════════════════════════════════════════════
   CLAY BOWER — HOME PAGE
   ══════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Milker';
  src: url('../fonts/Milker.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: 'Milker', 'Georgia', serif;
  --font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;

  --cream:        #F9F6F0;
  --cream-deep:   #F0EBE1;
  --bg-secondary: #F5F5F2;
  --bg-transition: #F7F7F4;
  --white:        #FFFFFF;
  --blue:         #3D6E9E;
  --blue-light:   #EBF2F9;
  --blue-dark:    #2A4F72;
  --navy:         #1C2B3A;
  --text:         #2C3E50;
  --text-muted:   #7B8FA1;
  --border:       rgba(61,110,158,0.13);
  --border-mid:   rgba(61,110,158,0.22);

  --shadow-sm:    0 2px 12px rgba(28,43,58,0.07);
  --shadow-md:    0 4px 28px rgba(28,43,58,0.10);
  --shadow-lg:    0 8px 56px rgba(28,43,58,0.14);

  --radius:       18px;
  --radius-lg:    26px;
  --transition:   0.22s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: normal;
  color: var(--navy);
  line-height: 1.0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 100px;
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: scale(1.03) translateY(-1px);
  filter: brightness(0.9);
  box-shadow: 0 6px 20px rgba(61,110,158,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: white; filter: none; }
.btn-navy { background: var(--navy); }
.btn-red  { background: #FF0000; }
.btn-lg   { padding: 16px 36px; font-size: 12px; }

/* ── Nav ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 52px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(249,246,240,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s, border-color 0.3s, box-shadow 0.3s;
}

#nav.scrolled {
  padding: 13px 52px;
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }

.nav-newsletter {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1.5px solid var(--border-mid);
  border-radius: 100px;
  padding: 9px 20px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-newsletter:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-1px);
}

/* ── Newsletter Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,43,58,0.55);
  backdrop-filter: blur(6px);
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 22px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--navy); }
.modal h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 10px;
}
.modal p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input {
  padding: 14px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border-mid);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  text-align: center;
  transition: border-color var(--transition);
}
.modal-form input:focus { border-color: var(--blue); }
.modal-form button { width: 100%; }

/* ── Hero ── */
#hero {
  padding: 140px 52px 100px;
  background: var(--cream);
}

.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 80px;
  align-items: center;
}

.hero-photo-wrap {
  perspective: 1000px;
  align-self: flex-start;
  margin-top: 20px;
}

.hero-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: normal;
  line-height: 0.92;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero-divider {
  width: 52px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 22px;
  border-radius: 2px;
}

.hero-tagline {
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.5;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.social-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── Section Divider ── */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(61,110,158,0.18) 30%, rgba(61,110,158,0.18) 70%, transparent);
  margin: 0;
}

/* ── Photo Marquee ── */
#marquee {
  padding: 48px 0;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  gap: 14px;
  animation: marquee-scroll 50s linear infinite;
  width: max-content;
}

.marquee-photo {
  width: 140px;
  height: 250px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  background: var(--cream-deep);
}
.marquee-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.marquee-photo:hover img { transform: scale(1.06); }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── About ── */
#about {
  padding: 80px 52px;
  background: var(--bg-transition);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-inner .eyebrow { margin-bottom: 12px; }
.about-inner .section-title { margin-bottom: 20px; font-size: clamp(28px, 3.5vw, 44px); }

.about-body {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* 2×2 stats card */
.stats-card-2x2 {
  background: var(--blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.stats-card-2x2 .stat-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.stats-card-2x2 .stat-item:nth-child(even) { border-right: none; }
.stats-card-2x2 .stat-item:nth-child(n+3) { border-bottom: none; }

.stats-card-2x2 .stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-card-2x2 .stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── Programs ── */
#programs {
  padding: 100px 52px;
  background: var(--cream);
}

.program-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 1fr;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border-top: 3px solid var(--blue);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  transform-style: preserve-3d;
  transition: box-shadow 0.3s;
  will-change: transform;
}

.program-card:hover { box-shadow: 0 24px 64px rgba(28,43,58,0.18); }

.program-card-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.45s ease;
}
.program-card:hover .program-card-img img { transform: scale(1.05); }

.program-card-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.program-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--blue-light);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  padding: 6px 14px;
  color: var(--blue);
  align-self: flex-start;
}

.program-name {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.0;
  color: var(--navy);
}

.program-desc {
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-muted);
}

.program-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.program-price-new {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--blue);
}
.program-price-old {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.program-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1.5px solid var(--blue);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: gap 0.2s;
}
.program-card:hover .program-cta-link { gap: 14px; }

/* ── Testimonials (auto-scroll marquee) ── */
#testimonials {
  padding: 60px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 52px;
}

.testimonials-header .eyebrow { margin-bottom: 8px; }
.testimonials-header .section-title { font-size: clamp(18px, 2.5vw, 28px); }

.testi-track {
  display: flex;
  gap: 16px;
  animation: testi-scroll 38s linear infinite;
  width: max-content;
}
.testi-track:hover { animation-play-state: paused; }

@keyframes testi-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  min-width: 260px;
  max-width: 280px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.testi-stars {
  color: #C5A55A;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 9px;
}

.testi-text {
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 13px;
}

.testi-author { display: flex; align-items: center; gap: 10px; }

.testi-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.testi-handle {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Codes ── */
#codes {
  padding: 100px 52px;
  background: var(--cream);
}

.codes-grid {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.code-card {
  background: #FDFBF8;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(61,110,158,0.18);
  box-shadow: 0 4px 24px rgba(28,43,58,0.07);
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: center;
}
.code-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.code-card-photo {
  margin: 14px 14px 0;
  border-radius: 12px;
  overflow: hidden;
}
.code-card-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.code-card:hover .code-card-photo img { transform: scale(1.05); }

.code-card-body { padding: 20px 22px 24px; }

.code-brand {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.code-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.code-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 24px;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s, background 0.2s;
  border: none;
  font-family: var(--font-body);
  width: 100%;
  justify-content: center;
}
.code-pill-btn:hover { transform: scale(1.03); filter: brightness(1.15); }
.code-pill-btn.copied { background: #2a6e36; }

.code-value {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.code-copy-hint {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 12px;
}

.code-shop-link {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.code-shop-link:hover { color: var(--blue); }

/* ── YouTube ── */
#watch {
  padding: 56px 52px;
  background: var(--bg-secondary);
}

#watch .section-header {
  margin-bottom: 28px;
}

#watch .section-title {
  font-size: clamp(16px, 2.2vw, 26px);
}

.video-wrap {
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.video-actions .btn {
  font-size: 10px;
  padding: 10px 20px;
}

/* ── Tip Jar ── */
#tip-jar {
  padding: 100px 52px;
  background: var(--cream);
  text-align: center;
}

.tip-jar-inner {
  max-width: 560px;
  margin: 0 auto;
}

.tip-jar-inner .section-title { margin-bottom: 12px; }

.tip-jar-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.tip-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tip-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.tip-btn:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── Work With Me ── */
#work-with-me {
  padding: 100px 52px;
  background: var(--cream);
  text-align: center;
}

.work-inner { max-width: 600px; margin: 0 auto; }

.work-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.work-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  color: var(--navy);
  line-height: 1.0;
  margin-bottom: 18px;
}

.work-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.work-email {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  color: var(--navy);
  border-bottom: 1.5px solid var(--border-mid);
  padding-bottom: 4px;
  transition: border-color var(--transition), color var(--transition);
  display: inline-block;
}
.work-email:hover {
  color: var(--blue);
  border-color: var(--blue);
}

/* ── Footer ── */
footer {
  background: #111C27;
  padding: 52px;
  text-align: center;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, transform 0.2s;
}
.footer-social-pill:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

/* ── Hamburger (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  #nav { padding: 16px 24px; }
  #nav.scrolled { padding: 12px 24px; }
  .nav-newsletter { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(249,246,240,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 250;
    padding: 14px 18px;
    list-style: none;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .nav-open .nav-links { display: flex; }
  .nav-links li { text-align: center; }
  .nav-links a { font-size: 11px; letter-spacing: 0.12em; color: var(--navy); }

  /* Hero */
  #hero { padding: 100px 24px 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }
  .hero-photo-wrap { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-text { text-align: center; }
  .hero-name { font-size: clamp(48px, 12vw, 80px); }
  .hero-divider { margin: 0 auto 22px; }
  .hero-socials { justify-content: center; }

  /* Marquee */
  #marquee { padding: 32px 0; }
  .marquee-photo { width: 120px; height: 210px; }

  /* About */
  #about { padding: 56px 24px; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 100%;
  }
  .about-inner > div:first-child { text-align: center; }

  /* Programs */
  #programs { padding: 60px 24px; }
  .program-card {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .program-card-img { min-height: 280px; }

  /* Testimonials */
  #testimonials { padding: 48px 0; }
  .testimonials-header { padding: 0 24px; }

  /* Codes */
  #codes { padding: 60px 24px; }
  .codes-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* YouTube */
  #watch { padding: 48px 24px; }
  .video-wrap { max-width: 100%; }

  /* Tip Jar */
  #tip-jar { padding: 60px 24px; }
  .tip-buttons { flex-direction: column; align-items: center; }

  /* Work With Me */
  #work-with-me { padding: 60px 24px; }

  /* Footer */
  footer { padding: 40px 24px; }
  .footer-socials { gap: 8px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 480px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  #nav { padding: 14px 18px; }
  .nav-logo { font-size: 18px; }

  #hero { padding: 90px 18px 48px; }
  .hero-photo-wrap { max-width: 280px; }
  .hero-name { font-size: clamp(40px, 14vw, 60px); }
  .hero-tagline { font-size: 14px; }
  .hero-socials { gap: 8px; }
  .social-pill { font-size: 11px; padding: 7px 14px; }

  #marquee { padding: 24px 0; }
  .marquee-photo { width: 100px; height: 178px; border-radius: 10px; }

  #about { padding: 44px 18px; }
  .about-inner { gap: 28px; }
  .about-inner .section-title { font-size: clamp(24px, 7vw, 36px); }
  .stats-card-2x2 .stat-item { padding: 28px 16px; }
  .stats-card-2x2 .stat-num { font-size: 28px; }

  #programs { padding: 44px 18px; }
  .program-card-body { padding: 28px 24px; }
  .program-name { font-size: 32px; }
  .program-price-new { font-size: 28px; }

  #testimonials { padding: 36px 0; }
  .testimonials-header { padding: 0 18px; margin-bottom: 20px; }
  .testi-card { min-width: 240px; max-width: 260px; padding: 16px 18px; }
  .testi-text { font-size: 12px; }

  #codes { padding: 44px 18px; }
  .codes-grid { max-width: 100%; }
  .code-brand { font-size: 20px; }

  #watch { padding: 36px 18px; }
  #watch .section-header { margin-bottom: 20px; }

  #tip-jar { padding: 44px 18px; }
  .tip-jar-inner .section-title { font-size: clamp(28px, 7vw, 40px); }
  .tip-btn { padding: 12px 22px; font-size: 12px; width: 100%; justify-content: center; }

  #work-with-me { padding: 48px 18px; }
  .work-title { font-size: clamp(28px, 8vw, 44px); }
  .work-email { font-size: clamp(16px, 4.5vw, 24px); }

  footer { padding: 32px 18px; }
  .footer-name { font-size: 24px; }
  .footer-social-pill { font-size: 11px; padding: 7px 14px; }

  /* Modal */
  .modal { padding: 36px 24px; max-width: 92%; }
  .modal h3 { font-size: 26px; }

  /* Section dividers */
  .section-divider { margin: 0 18px; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: clamp(24px, 6vw, 44px); }
  .btn { font-size: 10px; padding: 12px 24px; }
  .btn-lg { padding: 14px 28px; }
}
