/* ============================================
   NOW THAT ITS OVER RECORDS — Main Stylesheet
   ============================================ */

/* ============================================
   PAGE LOADER
   ============================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-gif {
  width: min(520px, 80vw);
  height: auto;
}

/* Prevent scroll while loader is visible */
body.loading {
  overflow: hidden;
}

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-cream: #ffffff;
  --color-dark-section: #111111;
  --font-heading: 'MadInk', 'Impact', fantasy;
  --font-body: 'acumin-pro', sans-serif;
  --border: 2px solid var(--color-black);
  --spacing-sm: 0.75rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
}





/* ============================================
   RED ACCENT WORDS
   ============================================ */
.red-word {
  color: #c41f1d;
  display: inline;
}

/* ============================================
   DOODLE IMAGE ANIMATIONS
   ============================================ */
@keyframes doodle-float {
  0%   { transform: rotate(0deg) translateY(0px); }
  25%  { transform: rotate(1.5deg) translateY(-4px); }
  50%  { transform: rotate(-1deg) translateY(2px); }
  75%  { transform: rotate(1deg) translateY(-3px); }
  100% { transform: rotate(0deg) translateY(0px); }
}

@keyframes doodle-spin-float {
  0%   { transform: rotate(0deg) translateY(0px) scale(1); }
  25%  { transform: rotate(4deg) translateY(-5px) scale(1.02); }
  50%  { transform: rotate(-3deg) translateY(3px) scale(0.98); }
  75%  { transform: rotate(3deg) translateY(-4px) scale(1.01); }
  100% { transform: rotate(0deg) translateY(0px) scale(1); }
}

.inline-star {
  animation: doodle-spin-float 4s ease-in-out infinite;
  animation-delay: -0.8s;
}

.diff-icon {
  animation: doodle-float 5s ease-in-out infinite;
  animation-delay: -1.5s;
}

.channels-cloud {
  animation: doodle-float 6s ease-in-out infinite;
  animation-delay: -2s;
}

.artists-flower {
  animation: doodle-spin-float 5.5s ease-in-out infinite;
  animation-delay: -1s;
}

.aim-arrow-img {
  animation: doodle-float 4.5s ease-in-out infinite;
  animation-delay: -0.5s;
}

.logo-icon {
  animation: doodle-float 7s ease-in-out infinite;
  animation-delay: -3s;
}

@media (prefers-reduced-motion: reduce) {
  .inline-star, .diff-icon, .channels-cloud,
  .artists-flower, .aim-arrow-img, .logo-icon {
    animation: none;
  }
}

/* ============================================
   MADINK WIGGLE ANIMATION — per letter
   ============================================ */
@keyframes madink-wiggle {
  0%   { transform: rotate(0deg)    translateY(0px); }
  20%  { transform: rotate(0.25deg) translateY(-0.3px); }
  40%  { transform: rotate(-0.2deg) translateY(0.2px); }
  60%  { transform: rotate(0.15deg) translateY(-0.2px); }
  80%  { transform: rotate(-0.25deg) translateY(0.3px); }
  100% { transform: rotate(0deg)    translateY(0px); }
}

.madink-letter {
  display: inline-block;
  animation: madink-wiggle 3s ease-in-out infinite;
  /* delay set per-letter via JS */
  will-change: transform, translate;
  cursor: default;
}

.madink-letter.space {
  display: inline-block;
  width: 0.3em;
}

.madink-word {
  display: inline-block;
  white-space: nowrap;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .madink-letter { animation: none; }
}

/* ============================================
   TEXT SELECTION
   ============================================ */
::selection {
  background: #c41f1d;
  color: #ffffff;
}

::-moz-selection {
  background: #c41f1d;
  color: #ffffff;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-cream);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  padding: 16px;
}

.site-wrap {
  background: var(--color-cream);
  border: 2px solid var(--color-black);
  min-height: calc(100vh - 32px);
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
.heading-mad {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.heading-mad--white {
  color: var(--color-white);
}

.subheading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.05rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  padding: 0 350px;
}

.divider {
  border: none;
  border-top: 1.5px solid #ccc;
  margin: 0 auto;
  max-width: 960px;
}

.section-title-row {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title-row .heading-mad {
  font-size: clamp(1.2rem, 5vw, 7rem);
}

.asterisk {
  display: inline-block;
  font-style: normal;
}

.inline-star {
  display: inline-block;
  width: 5.0625rem;
  height: 5.0625rem;
  object-fit: contain;
  vertical-align: middle;
  margin-left: 0.25rem;
}

.aim-title-wrap {
  display: inline-block;
  text-align: center;
}

/* ============================================
   HEADER
   ============================================ */

/*
  DESIGN SPEC (from original mockup):
  - Header is full viewport width, no max-width cap
  - Logo row: dog icon in a square box (border-right) | giant title text fills remaining space
  - Both logo row and nav bar have a 2px black border on the bottom
  - Nav bar: full width, cream bg, 7 links each with flex:1, separated by 2px black right borders
  - Active/hover link: black bg, cream text
*/

.site-header {
  background: var(--color-cream);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

/* Logo row — taller to give dog more space */
.logo-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 160px;
  border-bottom: 2px solid var(--color-black);
  position: relative;
}

/* Dog icon — fills full height so border-right touches top+bottom */
.logo-icon {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  padding: 8px 14px;
  border-right: 2px solid var(--color-black);
  flex-shrink: 0;
  background: #ffffff;
  align-self: stretch;
}

/* Title — single line, scales to fill available width */
.logo-text {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 0.5rem 0.2rem;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  font-size: clamp(0.8rem, 5.2vw, 99rem);
}

/* Nav bar — cream bg, full black borders, active has darker fill */
.main-nav {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: transparent;
  border-bottom: 2px solid var(--color-black);
}

.nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 0.25rem;
  text-align: center;
  border-right: 2px solid var(--color-black);
}

.nav-link span {
  display: inline-block;
  transform: scaleY(1.1);
  position: relative;
  z-index: 1;
}

.nav-link:first-child {
  border-left: none;
}

.nav-link:last-child {
  border-right: none;
}

.nav-link.active {
  background: var(--color-black);
  color: #ffffff;
}

.nav-link.active .sweep-text {
  color: #ffffff;
}

/* ============================================
   HERO SECTION
   ============================================ */
.section-hero {
  padding: var(--spacing-xl) 0;
  text-align: center;
  border-bottom: 2px solid var(--color-black);
}

.hero-heading {
  font-size: clamp(1.5rem, 5.5vw, 9rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  color: #555;
}

.hero-btn {
  display: inline-block;
  border: 2px solid var(--color-black);
  padding: 1rem 3rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* ============================================
   WHAT WE AIM
   ============================================ */
.section-aim {
  padding: var(--spacing-xl) 0;
  text-align: center;
  border-bottom: 2px solid var(--color-black);
}

.section-aim .section-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-aim .heading-mad {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.aim-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 0.25rem;
}

.aim-flow {
  margin-top: var(--spacing-lg);
}

.aim-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 2rem;
  gap: 0.4rem;
}

.aim-box--dark { /* no special styling without the box */ }

.aim-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.aim-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
  color: #555;
}

.aim-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.aim-arrow-img {
  width: 80px;
  height: auto;
}

/* ============================================
   WHAT WE DO DIFFERENT
   ============================================ */
.section-different {
  padding: var(--spacing-lg) 0 var(--spacing-xl);
}

.diff-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.diff-title-row .heading-mad {
  font-size: clamp(1.2rem, 5vw, 6rem);
}

.diff-icon {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.diff-icon[src$=".png"] {
  min-width: 60px;
  min-height: 60px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.diff-card {
  border: var(--border);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.diff-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  color: #555;
}

.diff-card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.diff-card p {
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ============================================
   OUR CREATIVE CHANNELS
   ============================================ */
.section-channels {
  background: var(--color-black);
  padding: var(--spacing-xl) 0;
  color: var(--color-white);
}

.section-channels .container {
  padding: 0 200px;
}

.channels-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
}

.channels-header .heading-mad {
  font-size: clamp(1.2rem, 5vw, 6rem);
}

.channels-cloud {
  width: 180px;
  height: auto;
  opacity: 0.9;
}

.channels-cloud[src$=".png"] {
  min-width: 130px;
  min-height: 91px;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.channel-card {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--color-white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Video fills the top of the card, autoplays */
.channel-video-bg {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  flex-shrink: 0;
}

.channel-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info row: square PFP on left, text on right */
.channel-info {
  display: flex;
  align-items: center;
  gap: 0;
  background: #111;
  border-top: 2px solid var(--color-white);
}

.channel-pfp {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
  border-right: 2px solid var(--color-white);
  display: block;
}

.channel-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0.85rem;
}

.channel-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border: 2px solid var(--color-white);
  background: #2a2a2a;
  overflow: hidden;
}

.channel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-video {
  width: 140px;
  flex-shrink: 0;
  aspect-ratio: 16/9;
  border: 2px solid var(--color-white);
  background: #000;
  overflow: hidden;
  position: relative;
}

.channel-video iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.channel-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.channel-type {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  margin: 0.15rem 0;
  color: #aaa;
}

.channel-desc {
  font-size: 0.7rem;
  line-height: 1.5;
  color: #ccc;
}

/* ============================================
   OUR MARKETING + ARTISTS
   ============================================ */
.section-marketing {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.marketing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.marketing-col .heading-mad,
.artists-col .heading-mad {
  font-size: clamp(1.2rem, 4vw, 6rem);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.marketing-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.marketing-item {
  border: var(--border);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  cursor: default;
}

.artists-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.artist-tag {
  border: var(--border);
  padding: 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: color 0.3s ease;
}

.artists-flower {
  width: 114px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.artists-flower[src$=".png"] {
  min-width: 114px;
  min-height: 114px;
}

/* ============================================
   WHY WORK WITH US
   ============================================ */
.section-why {
  padding: var(--spacing-xl) 0;
}

.section-why .section-title-row .heading-mad {
  font-size: clamp(1rem, 4vw, 7rem);
  white-space: nowrap;
  text-align: center;
  width: 100%;
  display: block;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.section-why .section-title-row {
  text-align: center;
}

.why-item {
  border: var(--border);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: color 0.3s ease;
}

/* ============================================
   ABOUT US
   ============================================ */
.section-about {
  background: var(--color-black);
  padding: var(--spacing-xl) 0;
  color: var(--color-white);
}

.section-about .container {
  padding: 0 200px;
}

.section-about .heading-mad {
  font-size: clamp(3rem, 6vw, 6rem);
  margin-bottom: var(--spacing-md);
}

.about-body {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
}

.about-body strong {
  font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-cream);
  border-top: 2px solid var(--color-black);
  text-align: center;
  padding: var(--spacing-md) 0;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #555;
  margin-top: 0.2rem;
}




/* ============================================
   SWEEP HOVER ANIMATION
   ============================================ */

.sweep {
  position: relative;
  overflow: hidden;
}

.sweep::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  transition: left 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.sweep.swept::after {
  left: 0;
}

.sweep .sweep-text {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  color: #0a0a0a;
}

.sweep.swept .sweep-text {
  color: #ffffff;
}

/* Channel cards — simple white overlay on hover, no sweep */
.channel-card .sweep-text {
  color: #ffffff;
}

.channel-card::after {
  display: none;
}

.channel-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
/* ============================================
   HAMBURGER
   ============================================ */
.hamburger {
  display: none;
  width: 100%;
  background: transparent;
  border: none;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  cursor: pointer;
  padding: 0.6rem 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black);
  transition: background 0.2s, color 0.2s;
}

.hamburger.open {
  background: var(--color-black);
  color: #ffffff;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Remove hover effects on touch devices */
@media (hover: none) {
  .sweep::after { display: none; }
  .sweep.swept .sweep-text { color: inherit; }
  .channel-card .sweep-text { color: #ffffff; }
  .nav-link:hover, .nav-link.active { background: var(--color-black); }
  .nav-link.active .sweep-text { color: #ffffff; }
}

/* ---- Tablet: 1024px ---- */
@media (max-width: 1024px) {
  body { padding: 10px; }

  .container { padding: 0 40px; }
  .section-channels .container,
  .section-about .container { padding: 0 40px; }

  .hero-heading { font-size: clamp(2.5rem, 8vw, 6rem); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .aim-box { width: 160px; height: 160px; }

  .inline-star { width: 3rem; height: 3rem; }
  .diff-icon { width: 50px; }
  .channels-cloud { width: 120px; }
  .artists-flower { width: 80px; }
}

/* ---- Mobile: 768px ---- */
@media (max-width: 768px) {
  body { padding: 8px; overflow-x: hidden; }

  .container { padding: 0 16px; }
  .section-channels .container,
  .section-about .container { padding: 0 16px; }

  /* Logo row */
  .logo-wrap { height: 80px; }
  .logo-icon { height: 100%; }
  .logo-text {
    font-size: clamp(0.75rem, 3.8vw, 1.6rem);
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Hamburger nav */
  .hamburger { display: block; }
  .main-nav { display: none; flex-direction: column; width: 100%; }
  .main-nav.open { display: flex; }
  .nav-link {
    flex: none;
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
    border-right: none;
    border-bottom: 1px solid #ddd;
    text-align: left;
    justify-content: flex-start;
  }
  .nav-link:last-child { border-bottom: none; }

  /* Hero */
  .section-hero { padding: 2.5rem 0; }
  .hero-heading {
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    white-space: normal;
  }
  .hero-btn { padding: 0.85rem 2rem; font-size: 0.75rem; }

  /* Section spacing */
  .section-aim { padding-top: 1rem; padding-bottom: 1rem; }
  .section-different,
  .section-channels,
  .section-marketing,
  .section-why,
  .section-about { padding-top: 2.5rem; padding-bottom: 2.5rem; }

  /* Aim — grid: [BOX1][→][BOX2] row1 / [↓][BOX3] col3 rows 2-3 */
  .aim-flow {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    justify-items: center;
    column-gap: 0.25rem;
    row-gap: 0;
    margin-top: 0;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .aim-flow > :nth-child(1) { grid-column: 1; grid-row: 1; justify-self: center; align-self: start; }
  .aim-flow > :nth-child(2) { grid-column: 2; grid-row: 1; }
  .aim-flow > :nth-child(3) { grid-column: 3; grid-row: 1; justify-self: center; align-self: start; }
  .aim-flow > :nth-child(4) {
    grid-column: 3;
    grid-row: 2;
    transform: rotate(125deg);
  }
  .aim-flow > :nth-child(5) { grid-column: 1 / -1; grid-row: 3; justify-self: center; margin-top: -1.5rem; }
  .aim-box { padding: 0.35rem 0.5rem; }
  .aim-label { font-size: 0.68rem; letter-spacing: 0.01em; }
  .aim-sub { font-size: 0.6rem; }
  .aim-arrow-img { width: 28px; }

  .section-aim .section-title-row { margin-bottom: 0.5rem; }

  /* Stack CREATIVE / MARKETING heading centered */
  .section-aim .heading-mad {
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
  }

  /* Doodle images */
  .inline-star { width: 2rem; height: 2rem; }
  .diff-icon { width: 40px; }
  .channels-cloud { width: 80px; }
  .artists-flower { width: 70px; }

  /* Headings */
  .heading-mad { white-space: normal; }

  /* Uniform section heading size — allow wrapping, nothing clips */
  .section-aim .section-title-row .heading-mad,
  .channels-header .heading-mad,
  .marketing-col .heading-mad,
  .section-why .section-title-row .heading-mad,
  .section-about .heading-mad {
    font-size: 2.2rem;
    white-space: normal;
    letter-spacing: 0.01em;
  }

  /* "WHAT WE DO DIFFERENT" — same uniform size, wraps at word boundary (no letter split on mobile) */
  .diff-title-row .heading-mad {
    font-size: 2.2rem;
    white-space: normal;
    letter-spacing: 0.01em;
  }

  /* Arrow moves below heading, constrained small */
  .diff-title-row {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }
  .diff-icon {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain;
  }
  .diff-grid { grid-template-columns: 1fr; gap: 0.75rem; }

  /* 3. Our Creative Channels — centered */
  .channels-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .channels-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* 4. Our Marketing — centered */
  .marketing-grid { grid-template-columns: 1fr; gap: 2rem; }
  .marketing-col { text-align: center; }
  .marketing-list { align-items: center; }

  /* 5. About Us — centered */
  .section-about .container { text-align: center; }
  .about-body { max-width: 100%; font-size: 0.9rem; text-align: left; }

  /* 6. Why Work With Us — hierarchy */
  .section-why .section-title-row .heading-mad {
    font-size: clamp(2rem, 9vw, 4rem);
    white-space: normal;
  }
  .subheading {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-top: 0.3rem;
    color: #555;
  }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }

  /* Footer */
  .site-footer { padding: 1.5rem 1rem; }
}

/* ---- Mobile portrait: 480px ---- */
@media (max-width: 480px) {
  body { padding: 6px; }
  .container { padding: 0 12px; }
  .section-channels .container,
  .section-about .container { padding: 0 12px; }

  .logo-wrap { height: 64px; }
  .logo-text {
    font-size: clamp(0.6rem, 3.4vw, 1.2rem);
    padding: 0 0.5rem;
  }

  .section-hero { padding: 2rem 0; }
  .hero-heading { font-size: clamp(1.5rem, 9vw, 3rem); }
  .hero-btn { width: 100%; text-align: center; }

  .aim-box { padding: 0.4rem 0.6rem; }
  .aim-label { font-size: 0.75rem; }
  .aim-sub { font-size: 0.55rem; }
  .aim-arrow-img { width: 26px; }

  .inline-star { width: 1.5rem; height: 1.5rem; }
  .diff-icon { width: 30px; }
  .channels-cloud { width: 60px; }

  .why-grid { grid-template-columns: 1fr; }
  .about-body { font-size: 0.85rem; }

  .channel-pfp { width: 64px; height: 64px; }
}
