/* ═══════════════════════════════════════════════════
   Content Creation — Page-specific styles
   Sections 1–12 for the full services page
   ═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   HYBRID DARK+LIGHT ART DIRECTION
   Dark hero → light editorial body → dark closing
   Reference: Aesop, Kinfolk, Cereal, Toteme, Ignant
   ═══════════════════════════════════════════════════ */

/* H2s on dark sections use cream, not gold (gold is rationed to hero + accents) */
[data-page="content-creation"] .section-title {
  color: var(--white);
}

/* Labels on dark sections get subdued gold border */
[data-page="content-creation"] .label {
  border-bottom-color: rgba(184, 146, 58, 0.3);
}

/* ── Fraunces fine-tuning on content-creation page ── */
.cc-hero-title em.serif {
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════════
   .section-bone — LIGHT EDITORIAL SECTIONS
   Applied to §2, §3, §4, §5, §5b, §6, §8, §10, §11
   ═══════════════════════════════════════════════════ */
.section-bone {
  background: var(--bg-light) !important;
  color: var(--text-on-light);
  position: relative;
}

/* Typography shifts in light sections */
.section-bone .section-title,
.section-bone .editorial-title {
  color: var(--text-on-light);
}
.section-bone .editorial-title em.serif,
.section-bone .cc-hero-title em.serif {
  color: var(--coral);
}
.section-bone .label {
  color: var(--coral);
  border-bottom-color: rgba(184, 146, 58, 0.35);
  /* Scale up on light bg — gold-on-bone has lower contrast than gold-on-black,
     so legibility needs a size + weight bump to read at a glance */
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding-bottom: 0.65rem;
}
.section-bone p,
.section-bone .section-text,
.section-bone .section-text p {
  color: var(--text-body-light);
}

/* No hairline dividers between consecutive light sections —
   editorial references (Aesop, Kinfolk, Cereal, Toteme) rely on whitespace
   + typographic contrast as the divider. A line on top of 80–160px of air
   reads like a "page break" scar. */

/* ═══════════════════════════════════════════════════
   SECTION 2 — Both sides of the camera (LIGHT)
   ═══════════════════════════════════════════════════ */
.section-bone .cc-sides-text p {
  color: var(--text-body-light);
}
.section-bone .cc-sides-img {
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.25);
}

/* ── §2 Second slot as video — Kris's storytelling, opt-in sound ── */
.cc-sides-video-wrap {
  position: relative;
}
.cc-sides-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.cc-sides-video-wrap:hover .cc-sides-video {
  transform: scale(1.03);
}

/* Sound toggle — subtle circular button, lower-right */
.cc-sides-sound-toggle {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(14, 14, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.cc-sides-sound-toggle:hover {
  background: var(--coral);
  transform: scale(1.06);
}
.cc-sides-sound-toggle.unmuted .icon-muted { display: none; }
.cc-sides-sound-toggle.unmuted .icon-unmuted { display: inline-block !important; }

/* ═══════════════════════════════════════════════════
   SECTION 3 — How I work (LIGHT cards)
   ═══════════════════════════════════════════════════ */
.section-bone .cc-how-card {
  background: var(--surface-light-elevated);
  border: 1px solid var(--divider-light);
  border-top: 2px solid var(--coral);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.section-bone .cc-how-card:hover {
  border-color: rgba(184, 146, 58, 0.4);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.12);
}
.section-bone .cc-how-num {
  color: var(--coral);
}
.section-bone .cc-how-title {
  color: var(--text-on-light);
}
.section-bone .cc-how-text {
  color: var(--text-body-light);
}

/* ═══════════════════════════════════════════════════
   SECTION 4 — Services (LIGHT rows)
   ═══════════════════════════════════════════════════ */
.section-bone .service-row {
  border-bottom-color: var(--divider-light);
}
.section-bone .service-row:first-child {
  border-top-color: var(--divider-light);
}
.section-bone .service-num {
  color: var(--text-muted-light);
}
.section-bone .service-name {
  color: var(--text-on-light);
}
.section-bone .service-desc {
  color: var(--text-body-light);
}
.section-bone .service-arrow {
  color: var(--text-muted-light);
}
.section-bone .service-row[data-color="coral"]:hover .service-num,
.section-bone .service-row[data-color="coral"]:hover .service-name,
.section-bone .service-row[data-color="coral"]:hover .service-arrow {
  color: var(--coral);
}

/* ═══════════════════════════════════════════════════
   SECTION 5 — Monthly Content Day (LIGHT featured)
   ═══════════════════════════════════════════════════ */
.cc-featured.section-bone {
  background:
    radial-gradient(ellipse at top right, rgba(184, 146, 58, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(184, 146, 58, 0.04), transparent 60%),
    var(--bg-light) !important;
}
.cc-featured.section-bone::before,
.cc-featured.section-bone::after {
  background: linear-gradient(to right, transparent, rgba(184, 146, 58, 0.35), transparent);
}
.section-bone .cc-featured-title {
  color: var(--coral);
}
.section-bone .cc-featured-sub {
  color: var(--text-on-light);
}
.section-bone .cc-featured-body p {
  color: var(--text-body-light);
}
.section-bone .cc-featured-emphasis {
  color: var(--text-on-light) !important;
}
.section-bone .cc-featured-list {
  border-top-color: var(--divider-light);
  border-bottom-color: var(--divider-light);
}
.section-bone .cc-featured-list li {
  color: var(--text-body-light);
}
.section-bone .cc-featured-footer {
  color: var(--text-muted-light);
}
.section-bone .cc-featured-price {
  border-top-color: rgba(184, 146, 58, 0.35);
  border-bottom-color: rgba(184, 146, 58, 0.35);
}
.section-bone .cc-price-label,
.section-bone .cc-price-note {
  color: var(--text-muted-light);
}
.section-bone .cc-price-period {
  color: var(--text-on-light);
}

/* ═══════════════════════════════════════════════════
   SECTION 5b — Offer ladder (LIGHT cards)
   ═══════════════════════════════════════════════════ */
.cc-ladder.section-bone {
  background: var(--surface-light) !important;
  border-top: 1px solid var(--divider-light);
}
.section-bone .cc-ladder-card {
  background: var(--surface-light-elevated);
  border-color: var(--divider-light);
}
.section-bone .cc-ladder-card:hover {
  border-color: rgba(184, 146, 58, 0.35);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.15);
}
.section-bone .cc-ladder-featured {
  background:
    radial-gradient(ellipse at top, rgba(184, 146, 58, 0.08), transparent 60%),
    var(--surface-light-elevated);
  border-color: rgba(184, 146, 58, 0.4);
}
.section-bone .cc-ladder-tag {
  color: var(--coral);
}
.section-bone .cc-ladder-title {
  color: var(--text-on-light);
}
.section-bone .cc-ladder-price {
  border-top-color: var(--divider-light);
  border-bottom-color: var(--divider-light);
}
.section-bone .cc-price-note-sm {
  color: var(--text-muted-light);
}
.section-bone .cc-ladder-desc {
  color: var(--text-body-light);
}
.section-bone .cc-ladder-link {
  border-top-color: rgba(184, 146, 58, 0.2);
}
.section-bone .cc-ladder-link:hover {
  color: var(--text-on-light);
}

/* ═══════════════════════════════════════════════════
   SECTION 6 — Beyond content (LIGHT)
   ═══════════════════════════════════════════════════ */
.section-bone .cc-beyond-text p {
  color: var(--text-body-light);
}
.section-bone .cc-beyond-list li {
  color: var(--text-on-light);
  border-bottom-color: var(--divider-light);
}
.section-bone .cc-beyond-list li:first-child {
  border-top-color: var(--divider-light);
}
.section-bone .cc-beyond-footer {
  color: var(--text-muted-light);
}

/* ═══════════════════════════════════════════════════
   SECTION 8 — The craft (LIGHT)
   ═══════════════════════════════════════════════════ */
.section-bone .cc-craft-text p {
  color: var(--text-body-light);
}

/* ═══════════════════════════════════════════════════
   SECTION 10 — Selected Work (LIGHT gallery)
   ═══════════════════════════════════════════════════ */
.section-bone .cc-work-intro {
  color: var(--text-muted-light);
}
.section-bone .gallery-item {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ═══════════════════════════════════════════════════
   SECTION 11 — Free audit (LIGHT)
   ═══════════════════════════════════════════════════ */
.section-bone .cc-audit-title {
  color: var(--coral);
}
.section-bone .cc-audit-text {
  color: var(--text-body-light);
}
.section-bone .cc-audit-small {
  color: var(--text-muted-light);
}
.section-bone .cc-audit-form {
  background: var(--surface-light-elevated);
  border-color: var(--divider-light);
}
.section-bone .form-group label {
  color: var(--coral);
}
.section-bone .form-input,
.section-bone .form-textarea,
.section-bone .form-select {
  background: var(--bg-light);
  border-color: var(--divider-light);
  color: var(--text-on-light);
}
.section-bone .form-input:focus,
.section-bone .form-textarea:focus,
.section-bone .form-select:focus {
  border-color: var(--coral);
}

/* ═══════════════════════════════════════════════════
   DARK SECTIONS THAT STAY DARK (§7, §9, §12)
   These sections keep their dark backgrounds for cinematic weight.
   ═══════════════════════════════════════════════════ */
/* §7 Who I work with — gold label underline on dark */
[data-page="content-creation"] .cc-who .label {
  color: var(--coral);
}

/* §9 Philosophy — already dark, just update gold hairlines.
   Extra top padding pushes the "What I Believe" label down — off the edge,
   gives the section more ceremonial breathing room. */
.cc-philosophy {
  background: var(--cream);
  border-top: 1px solid rgba(184, 146, 58, 0.12);
  border-bottom: 1px solid rgba(184, 146, 58, 0.12);
  padding-top: clamp(120px, 14vw, 200px);
  padding-bottom: clamp(120px, 14vw, 200px);
}

/* §12 Final CTA — dark closing */
.cc-final {
  background:
    radial-gradient(ellipse at center, rgba(184, 146, 58, 0.06), transparent 70%),
    var(--cream);
  border-top: 1px solid rgba(184, 146, 58, 0.12);
}

/* ── Breadcrumb transparent override ── */
[data-page="content-creation"] .breadcrumb {
  background: transparent;
  border-bottom: none;
  position: absolute;
  width: 100%;
  z-index: 10;
}
[data-page="content-creation"] .breadcrumb-back,
[data-page="content-creation"] .breadcrumb-current {
  color: rgba(255, 255, 255, 0.7);
}
[data-page="content-creation"] .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}
[data-page="content-creation"] .breadcrumb-back:hover {
  color: #fff;
}

/* ═══════════════════════════════════════════════════
   SECTION 1 — HERO  (matches homepage treatment:
   parallax-fixed video, film grain, editorial typography)
   ═══════════════════════════════════════════════════ */
.cc-hero {
  position: relative;
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) 0 clamp(100px, 12vw, 180px);
  background: #000;
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
  overflow: hidden;
  z-index: 1;
}

/* Parallax-fixed video (scrolls behind the sections below)
   Shadows lifted: contrast down, brightness up — less dramatic, warmer */
.cc-hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.12) contrast(0.94);
}
.cc-hero-video::-webkit-media-controls { display: none !important; }
.cc-hero-video::-webkit-media-controls-start-playback-button { display: none !important; }

/* Sections after hero scroll OVER the fixed video */
[data-page="content-creation"] .section,
[data-page="content-creation"] .cc-featured,
[data-page="content-creation"] .cc-philosophy,
[data-page="content-creation"] .cc-final {
  position: relative;
  z-index: 2;
}

/* Gradient overlay — gentler, lets the video breathe,
   still just enough protection behind text */
.cc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Left vignette — lighter, softer fade */
    linear-gradient(to right,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.1) 45%,
      rgba(0, 0, 0, 0) 75%
    ),
    /* Vertical — mostly open up top, soft darken at bottom */
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.02) 25%,
      rgba(0, 0, 0, 0.18) 55%,
      rgba(0, 0, 0, 0.7) 100%
    );
}

/* 35mm film grain — animated noise */
.cc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  animation: ccGrainShift 0.4s steps(3) infinite;
}
@keyframes ccGrainShift {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-2px, 1px); }
  66%  { transform: translate(1px, -2px); }
  100% { transform: translate(0, 0); }
}

.cc-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge at the top (pulsing dot + brand line) */
.cc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.cc-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: ccPulse 2s ease-in-out infinite;
}
@keyframes ccPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.85); }
}

/* Editorial headline — mirrors homepage .hero-title
   Clamp tuned so laptops (~1000–1440px) don't get proportionally huge type.
   Floor: mobile. Mid (vw): scales gently on laptops. Ceiling: big 4K+. */
.cc-hero-title {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 5vw, 6rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55);
  max-width: 1100px;
}
.cc-hero-title .hero-line {
  display: block;
}
.cc-hero-title em.serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Gold accent — plain text, heavier weight for emphasis */
.cc-hero-accent {
  color: var(--coral);
  font-weight: 400;
}

/* Bottom row: subhead + CTAs aligned like homepage */
.cc-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
  flex-wrap: wrap;
}
.cc-hero-desc {
  max-width: 520px;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
  margin: 0;
}
.cc-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cc-hero-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.cc-hero-link:hover {
  color: var(--coral);
  border-color: var(--coral);
}

/* Scroll indicator — bottom-right */
.cc-hero-scroll {
  position: absolute;
  bottom: clamp(30px, 4vw, 50px);
  right: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  z-index: 2;
}
.cc-hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: ccScrollLine 1.8s ease-in-out infinite;
}
@keyframes ccScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 768px) {
  .cc-hero {
    min-height: 100vh;
    padding-bottom: clamp(60px, 12vw, 100px);
  }
  .cc-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }
  .cc-hero-scroll { display: none; }
}

/* ═══════════════════════════════════════════════════
   SECTION 2 — BOTH SIDES OF THE CAMERA
   ═══════════════════════════════════════════════════ */
.cc-sides-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.cc-sides-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cc-sides-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.cc-sides-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.cc-sides-img:hover img {
  transform: scale(1.04);
}
.cc-sides-img-1 {
  margin-top: 3rem;
}
.cc-sides-img-2 {
  margin-bottom: 3rem;
}
.cc-sides-text .cc-editorial {
  margin-bottom: 2rem;
}
.cc-sides-text p {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.cc-sides-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .cc-sides-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .cc-sides-img-1,
  .cc-sides-img-2 {
    margin: 0;
  }
}

/* ═══════════════════════════════════════════════════
   SECTION 3 — HOW I WORK
   ═══════════════════════════════════════════════════ */
.cc-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
.cc-how-card {
  padding: clamp(1.8rem, 2.5vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--coral);
  border-radius: 4px;
  background: var(--surface);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.cc-how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
  border-top-color: var(--coral);
}
.cc-how-num {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 1.75rem;
}
.cc-how-title {
  font-family: var(--sans);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cc-how-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
}

@media (max-width: 1024px) {
  .cc-how-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   SECTION 5 — MONTHLY CONTENT DAY (featured offer)
   ═══════════════════════════════════════════════════ */
.cc-featured {
  padding: clamp(80px, 10vw, 160px) 0;
  background:
    radial-gradient(ellipse at top right, rgba(201, 168, 76, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(201, 168, 76, 0.05), transparent 60%),
    #080808;
  position: relative;
}
.cc-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
}
.cc-featured::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
}
.cc-featured-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.cc-featured-header .label {
  color: var(--coral);
  border-color: rgba(201, 168, 76, 0.4);
  margin-bottom: 1.5rem;
}
.cc-featured-title {
  font-family: var(--sans);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 200;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.5rem;
}
.cc-featured-sub {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-style: italic;
}
.cc-featured-body {
  text-align: left;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.cc-featured-body p {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.2rem;
}
.cc-featured-emphasis {
  color: var(--text-light) !important;
  font-weight: 400;
  margin-top: 1.5rem !important;
}
.cc-featured-list {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cc-featured-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-body);
}
.cc-featured-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 600;
}
.cc-featured-footer {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cc-featured-cta {
  border-color: var(--coral);
  color: var(--coral);
  font-size: 0.8rem;
  padding: 1rem 2rem;
}
.cc-featured-cta:hover {
  background: var(--coral);
  color: var(--cream);
}

/* ── Price anchor inside the MCD featured card ── */
.cc-featured-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  margin: 0 auto 2.5rem;
  padding: 1.75rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  max-width: 680px;
}
.cc-price-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.cc-price-amount {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--coral);
  line-height: 1;
  font-optical-sizing: auto;
}
.cc-price-period {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.cc-price-note {
  width: 100%;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════
   SECTION 5b — OFFER LADDER (Pilot / Signature / Bespoke)
   ═══════════════════════════════════════════════════ */
.cc-ladder {
  background: var(--warm-black);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.cc-ladder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
  margin-top: 2rem;
}
.cc-ladder-card {
  position: relative;
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  background: #0F0D0A;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.cc-ladder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.25);
}
.cc-ladder-featured {
  border-color: rgba(201, 168, 76, 0.4);
  background:
    radial-gradient(ellipse at top, rgba(201, 168, 76, 0.08), transparent 60%),
    #0F0D0A;
}
.cc-ladder-featured:hover {
  border-color: rgba(201, 168, 76, 0.6);
}
.cc-ladder-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bronze);
}
.cc-ladder-featured .cc-ladder-tag {
  color: var(--coral);
}
.cc-ladder-title {
  font-family: var(--sans);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1;
}
.cc-ladder-price {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cc-price-amount-sm {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--coral);
  line-height: 1;
  font-optical-sizing: auto;
}
.cc-price-note-sm {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.cc-ladder-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
  flex-grow: 1;
}
.cc-ladder-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.cc-ladder-link:hover {
  color: var(--text-light);
  padding-left: 0.3rem;
}

@media (max-width: 1024px) {
  .cc-ladder-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .cc-featured-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════
   SECTION 6 — BEYOND CONTENT
   ═══════════════════════════════════════════════════ */
.cc-beyond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.cc-beyond-text p {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.2rem;
}
.cc-beyond-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cc-beyond-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-light);
}
.cc-beyond-list li span {
  color: var(--coral);
  font-weight: 300;
}
.cc-beyond-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cc-beyond-footer {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  max-width: 720px;
}

@media (max-width: 1024px) {
  .cc-beyond-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   SECTION 7 — WHO I WORK WITH
   ═══════════════════════════════════════════════════ */
.cc-who-text {
  max-width: 860px;
}
.cc-who-text p {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}
.cc-who-point {
  color: var(--coral) !important;
  font-style: italic;
  border-left: 2px solid var(--coral);
  padding-left: 1.25rem;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════
   SECTION 8 — THE CRAFT
   ═══════════════════════════════════════════════════ */
.cc-craft-text {
  max-width: 780px;
}
.cc-craft-text p {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}
.cc-craft-text p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════
   SECTION 9 — PHILOSOPHY
   ═══════════════════════════════════════════════════ */
.cc-philosophy {
  background: #060606;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.cc-philosophy-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.cc-philosophy-inner .label {
  margin-bottom: 3rem;
  /* Remove underline — the ceremonial above/below rules inside the quote
     carry the divider work on this section. Just the word "What I Believe"
     sits alone at the top, breathing. */
  border-bottom: none;
  padding-bottom: 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.cc-philosophy-quote {
  font-family: var(--serif-display);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-style: italic;
  position: relative;
  padding: 0 clamp(1rem, 3vw, 3rem);
  font-optical-sizing: auto;
}
.cc-philosophy-quote::before,
.cc-philosophy-quote::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--coral);
  margin: 1.5rem auto;
  opacity: 0.6;
}
.cc-philosophy-coda {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-body);
  max-width: 620px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   SECTION 10 — SELECTED WORK
   ═══════════════════════════════════════════════════ */
.cc-work-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 640px;
}
.cc-work-grid {
  grid-auto-rows: clamp(240px, 28vw, 360px);
}
.cc-work-grid .gallery-item {
  cursor: pointer;
}
.cc-work-grid .gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════
   SECTION 11 — FREE AUDIT
   ═══════════════════════════════════════════════════ */
.cc-audit-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cc-audit-inner .label {
  margin-bottom: 1.25rem;
}
.cc-audit-title {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.cc-audit-text {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.cc-audit-small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.cc-audit-form {
  text-align: left;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: var(--surface);
}
.cc-audit-cta {
  align-self: flex-start;
  margin-top: 0.5rem;
  border-color: var(--coral);
  color: var(--coral);
}
.cc-audit-cta:hover {
  background: var(--coral);
  color: var(--cream);
}

/* ═══════════════════════════════════════════════════
   SECTION 12 — FINAL CTA
   ═══════════════════════════════════════════════════ */
.cc-final {
  background:
    radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06), transparent 70%),
    #050505;
  padding: clamp(100px, 12vw, 180px) 0;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.cc-final-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.cc-final-title {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  line-height: 0.95;
  margin-bottom: 2rem;
}
.cc-final-body {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.cc-final-meta {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 3rem;
}
.cc-final-cta {
  border-color: var(--coral);
  color: var(--coral);
  padding: 1rem 2rem;
  font-size: 0.8rem;
}
.cc-final-cta:hover {
  background: var(--coral);
  color: var(--cream);
}
.cc-final-secondary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.cc-final-secondary a {
  color: var(--coral);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cc-final-secondary a:hover {
  color: var(--text-light);
  border-color: var(--coral);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .cc-featured-list {
    grid-template-columns: 1fr;
  }
  .cc-how-grid {
    gap: 1.5rem;
  }
  .cc-audit-form {
    padding: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════
   SECTION 2b — THE TRAILER (dark letterboxed)
   Bye Bye Paraíso. Acting credential moment.
   ═══════════════════════════════════════════════════ */
.cc-trailer {
  background: var(--cream);  /* dark #0E0E10 */
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle editorial hairlines top + bottom — signals "cinema interlude" */
.cc-trailer::before,
.cc-trailer::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 146, 58, 0.3), transparent);
}
.cc-trailer::before { top: 0; }
.cc-trailer::after { bottom: 0; }

.cc-trailer .section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.cc-trailer .label {
  display: inline-block;
  color: var(--coral);
  border-bottom: 1px solid rgba(184, 146, 58, 0.3);
  margin-bottom: 1.5rem;
}
.cc-trailer .section-title {
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 1.75rem;
}
.cc-trailer .section-title em.serif {
  color: var(--coral);
}
.cc-trailer-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-body);
  font-style: normal;
}
.cc-trailer-sub em.serif {
  color: var(--white);
  font-style: italic;
}

/* Letterboxed 16:9 player */
.cc-trailer-frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 80px -20px rgba(0, 0, 0, 0.6);
}
.cc-trailer-video {
  width: 100%;
  height: 100%;
  object-fit: contain;  /* no crop — preserve the film's full framing */
  display: block;
  background: #000;
}

/* Sound toggle — bottom-right, editorial chip */
.cc-trailer-sound-toggle {
  position: absolute;
  bottom: clamp(12px, 2vw, 20px);
  right: clamp(12px, 2vw, 20px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem 0.55rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(14, 14, 16, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.cc-trailer-sound-toggle:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: scale(1.03);
}
.cc-trailer-sound-toggle.unmuted .icon-muted { display: none; }
.cc-trailer-sound-toggle.unmuted .icon-unmuted { display: inline-block !important; }
.cc-trailer-sound-toggle.unmuted .cc-trailer-sound-label::before {
  content: "Mute";
}
.cc-trailer-sound-toggle.unmuted .cc-trailer-sound-label { font-size: 0; }
.cc-trailer-sound-toggle.unmuted .cc-trailer-sound-label::before { font-size: 0.75rem; }

@media (max-width: 640px) {
  .cc-trailer-sound-label { display: none; }
  .cc-trailer-sound-toggle { padding: 0.6rem; }
}

/* ═══════════════════════════════════════════════════
   SECTION 5c — RECENT REELS
   Horizontal scroll-snap strip of 9:16 tiles.
   Pattern: Saint Laurent film index / Jacquemus campaigns.
   No phone frames — ratio alone signals "made for feed".
   ═══════════════════════════════════════════════════ */
.cc-reels .section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.cc-reels .label {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.cc-reels-sub {
  max-width: 560px;
  margin: 1.25rem auto 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted-light);
}

/* The scroll-snap strip. Horizontal overflow, tiles snap into position. */
.cc-reels-strip {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding: 0 clamp(20px, 4vw, 48px);
  padding: 0 clamp(20px, 4vw, 48px) clamp(12px, 2vw, 20px);
  scrollbar-width: thin;
  scrollbar-color: var(--coral-strong) transparent;
}
.cc-reels-strip::-webkit-scrollbar {
  height: 6px;
}
.cc-reels-strip::-webkit-scrollbar-track {
  background: transparent;
}
.cc-reels-strip::-webkit-scrollbar-thumb {
  background: rgba(184, 146, 58, 0.3);
  border-radius: 3px;
}
.cc-reels-strip::-webkit-scrollbar-thumb:hover {
  background: rgba(184, 146, 58, 0.6);
}

/* Individual reel tile. 9:16 aspect, fixed width so 3 fit on desktop. */
.cc-reel {
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 300px);
  margin: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.cc-reel video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #0E0E10;
  border-radius: 4px;
  box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cc-reel:hover video {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.35);
}

.cc-reel figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0.15rem;
}
.cc-reel-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-strong);
}
.cc-reel-caption {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-on-light);
}

/* Mobile: one tile fills viewport width, peek of next tile */
@media (max-width: 640px) {
  .cc-reel {
    width: 78vw;
  }
}

/* ── Reel tile: media wrapper so the sound toggle can sit overlaid ── */
.cc-reel-media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.cc-reel-media video {
  border-radius: 0;  /* now lives on the wrapper */
  box-shadow: none;  /* wrapper carries the shadow */
}
.cc-reel-media {
  box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cc-reel:hover .cc-reel-media {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.35);
}

/* Sound toggle — matches §2 .cc-sides-sound-toggle style (no border, clean chip) */
.cc-reel-sound-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(14, 14, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.cc-reel-sound-toggle:hover {
  background: var(--coral);
  transform: scale(1.06);
}
.cc-reel-sound-toggle.unmuted {
  background: var(--coral);
}
.cc-reel-sound-toggle.unmuted .icon-muted { display: none; }
.cc-reel-sound-toggle.unmuted .icon-unmuted { display: inline-block !important; }
