/* =============================================================
   RECLYNE — site.css
   Josie Clyne · video & creative content
   Built on the Reclyne design system (Barlow Condensed,
   cream / crimson / amber / dark-teal palette).
   ============================================================= */

/* ----- Fonts ----- */
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-Italic.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-Medium.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-SemiBold.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-ExtraBold.ttf") format("truetype");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-Black.ttf") format("truetype");
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-BlackItalic.ttf") format("truetype");
  font-weight: 900; font-style: italic; font-display: swap;
}

/* ----- Tokens ----- */
:root {
  --rc-crimson:    #77151B;
  --rc-amber:      #F8B637;
  --rc-dark-teal:  #08393C;
  --rc-mid-teal:   #2D676F;
  --rc-sky:        #94D4E8;
  --rc-cream:      #F5F0E8;
  --rc-black:      #1A1A1A;

  --rc-font: "Barlow Condensed", "Inter", system-ui, sans-serif;

  --rc-ease: cubic-bezier(.2, .8, .2, 1);

  --rc-edge-d: 64px;
  --rc-edge-m: 24px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--rc-font);
  background: var(--rc-cream);
  color: var(--rc-black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.4;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; padding: 0; color: inherit; }

/* ----- Type ----- */
.rc-eyebrow {
  font-family: var(--rc-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
}
.rc-display {
  font-family: var(--rc-font);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.86;
  margin: 0;
  text-wrap: balance;
}
.rc-h1 {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 144px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  margin: 0;
}
.rc-h2 {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0;
}
.rc-h3 {
  font-family: var(--rc-font);
  font-weight: 800;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0;
}
.rc-body {
  font-family: var(--rc-font);
  font-weight: 500;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.45;
  margin: 0;
  text-wrap: pretty;
}
.rc-body-lg {
  font-family: var(--rc-font);
  font-weight: 500;
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.4;
  margin: 0;
  text-wrap: pretty;
}
.rc-small {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Inline accent colour spans for headline emphasis */
.rc-amber  { color: var(--rc-amber); }
.rc-crimson{ color: var(--rc-crimson); }
.rc-teal   { color: var(--rc-dark-teal); }
.rc-cream  { color: var(--rc-cream); }
.rc-italic { font-style: italic; }

/* ----- Layout ----- */
.rc-edge {
  padding-left: var(--rc-edge-d);
  padding-right: var(--rc-edge-d);
}
@media (max-width: 720px) {
  .rc-edge { padding-left: var(--rc-edge-m); padding-right: var(--rc-edge-m); }
}

/* ----- Film grain overlay (utility) ----- */
.rc-grain { position: relative; }
.rc-grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(26,26,26,0.16) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.35;
  z-index: 2;
}

/* =============================================================
   NAV
   ============================================================= */
.rc-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--rc-crimson);
  color: var(--rc-cream);
  border-bottom: 0;
}
.rc-nav.is-floating {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: 0;
  color: var(--rc-cream);
}
.rc-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--rc-edge-d);
  gap: 32px;
}
@media (max-width: 720px) {
  .rc-nav__inner { padding: 14px var(--rc-edge-m); }
}
.rc-nav__logo img { height: 44px; width: auto; }
.rc-nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.rc-nav__link {
  font-family: var(--rc-font);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 4px;
  position: relative;
  color: inherit;
  transition: color 120ms var(--rc-ease);
}
.rc-nav__link::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 4px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--rc-ease);
}
.rc-nav__link:hover::after,
.rc-nav__link.is-active::after { transform: scaleX(1); }
.rc-nav__link.is-active { color: var(--rc-amber); }
.rc-nav.is-floating .rc-nav__link.is-active { color: var(--rc-amber); }

.rc-nav__cta {
  font-family: var(--rc-font);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--rc-amber);
  color: var(--rc-crimson);
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform 120ms var(--rc-ease), background 120ms var(--rc-ease), color 120ms var(--rc-ease);
}
.rc-nav__cta:hover { background: var(--rc-cream); color: var(--rc-crimson); }
.rc-nav__cta:active { transform: translate(2px, 2px); }

@media (max-width: 720px) {
  .rc-nav__links { gap: 14px; }
  .rc-nav__link { font-size: 12px; letter-spacing: 0.1em; }
  .rc-nav__cta { padding: 10px 14px; font-size: 13px; }
  .rc-nav__link--hide-sm { display: none; }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.rc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rc-font);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 24px;
  background: var(--rc-crimson);
  color: var(--rc-amber);
  border: 0;
  transition: transform 100ms var(--rc-ease), background 120ms var(--rc-ease), color 120ms var(--rc-ease);
  cursor: pointer;
}
.rc-btn:hover { background: var(--rc-amber); color: var(--rc-crimson); }
.rc-btn:active { transform: translate(2px, 2px); }
.rc-btn--amber { background: var(--rc-amber); color: var(--rc-crimson); }
.rc-btn--amber:hover { background: var(--rc-crimson); color: var(--rc-amber); }
.rc-btn--big { padding: 22px 32px; font-size: 22px; }
.rc-btn__arrow {
  display: inline-block;
  font-weight: 900;
  transition: transform 220ms var(--rc-ease);
}
.rc-btn:hover .rc-btn__arrow { transform: translateX(4px); }

.rc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rc-font);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  background: transparent;
  color: var(--rc-crimson);
  border: 3px solid var(--rc-crimson);
  transition: transform 100ms var(--rc-ease), background 120ms var(--rc-ease), color 120ms var(--rc-ease);
}
.rc-btn-outline:hover { background: var(--rc-crimson); color: var(--rc-cream); }
.rc-btn-outline:active { transform: translate(2px, 2px); }

/* =============================================================
   FOOTER
   ============================================================= */
.rc-footer {
  background: var(--rc-crimson);
  color: var(--rc-cream);
  padding: 80px var(--rc-edge-d) 32px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .rc-footer { padding: 56px var(--rc-edge-m) 24px; }
}
.rc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) {
  .rc-footer__grid { grid-template-columns: 1fr; gap: 36px; }
}
.rc-footer__mark img { height: 56px; }
.rc-footer__col h4 {
  font-family: var(--rc-font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-amber);
  margin: 0 0 16px;
}
.rc-footer__col a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: border-color 120ms var(--rc-ease);
}
.rc-footer__col a:hover { border-bottom-color: var(--rc-amber); }
.rc-footer__big {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.rc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,240,232,0.2);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 12px;
}
.rc-footer__sticker {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 380px;
  opacity: 0.15;
  transform: rotate(-12deg);
  z-index: 0;
}
@media (max-width: 820px) {
  .rc-footer__sticker { width: 240px; right: -40px; bottom: -60px; opacity: 0.12; }
}

/* =============================================================
   PAGE: HOMEPAGE — Crimson hero banner
   Nav sits on top (crimson), wordmark is part of nav,
   big amber boombox icon decorates the right side,
   headline + subline + CTA stack on the crimson banner.
   Hero photo is a full-bleed section below.
   ============================================================= */
.rc-hero {
  position: relative;
  background: var(--rc-crimson);
  color: var(--rc-cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.rc-hero::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(26,26,26,0.22) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.35;
  z-index: 1;
}
.rc-hero__icon {
  position: absolute;
  top: 80px;
  right: -80px;
  width: clamp(340px, 40vw, 620px);
  z-index: 2;
  transform: rotate(-6deg);
  pointer-events: none;
}
@media (max-width: 820px) {
  .rc-hero__icon { width: 260px; right: -60px; top: 100px; opacity: 0.55; }
}

/* ----- Icon animation — boombox powers up and powers down, loops -----
   Reveals from the antenna tip outward using clip-path circle.
   6s build → 3s hold → 4.5s reverse → 1.5s rest. Total: 15s loop. */
.rc-icon-animate {
  position: absolute;
  top: 60px;
  right: -20px;
  width: clamp(300px, 38vw, 560px);
  aspect-ratio: 1 / 1;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 820px) {
  .rc-icon-animate { width: 240px; right: -30px; top: 90px; opacity: 0.75; }
}

.rc-icon-pulse {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: rc-icon-activate 15s cubic-bezier(.4,.0,.2,1) infinite;
}

@keyframes rc-icon-activate {
  0% {
    clip-path: circle(3% at 83% 6%);
    filter: grayscale(100%) brightness(0.25);
    opacity: 0.25;
  }
  5% {
    clip-path: circle(8% at 83% 6%);
    filter: grayscale(85%) brightness(0.35);
    opacity: 0.4;
  }
  20% {
    clip-path: circle(35% at 65% 28%);
    filter: grayscale(50%) brightness(0.65);
    opacity: 0.75;
  }
  40% {
    clip-path: circle(120% at 50% 50%);
    filter: grayscale(0%) brightness(1);
    opacity: 1;
  }
  60% {
    clip-path: circle(120% at 50% 50%);
    filter: grayscale(0%) brightness(1);
    opacity: 1;
  }
  90% {
    clip-path: circle(3% at 83% 6%);
    filter: grayscale(100%) brightness(0.25);
    opacity: 0.25;
  }
  100% {
    clip-path: circle(3% at 83% 6%);
    filter: grayscale(100%) brightness(0.25);
    opacity: 0.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-icon-pulse {
    animation: none;
    clip-path: none;
    filter: none;
    opacity: 1;
  }
}
.rc-motion {
  --rc-motion-boombox-opacity: 0.5;
  --rc-motion-boombox-z: 1;
  --rc-motion-waves-z: 2;
  --rc-motion-waves-strength: 1;
  --rc-motion-waves-duration: 3.6s;
  position: absolute;
  top: 40px;
  right: -60px;
  width: clamp(360px, 44vw, 680px);
  aspect-ratio: 600 / 760;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-4deg);
}
@media (max-width: 820px) {
  .rc-motion { width: 300px; right: -60px; top: 80px; opacity: 0.7; }
}
.rc-motion svg.rc-motion__waves {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block; overflow: visible;
  z-index: var(--rc-motion-waves-z);
  opacity: var(--rc-motion-waves-strength);
}
.rc-motion__boombox {
  position: absolute;
  left: 22%; top: 18%;
  width: 56%; height: 44%;
  object-fit: contain;
  transform-origin: center;
  animation: rc-bob 2s ease-in-out infinite;
  filter: drop-shadow(0 6px 0 rgba(8,57,60,0.18));
  z-index: var(--rc-motion-boombox-z);
  opacity: var(--rc-motion-boombox-opacity);
}
.rc-motion__logo {
  position: absolute;
  left: 22%; top: 70%;
  width: 56%; height: 18%;
  object-fit: contain;
  transform-origin: center;
  animation: rc-logo-build 8s ease-out infinite;
  opacity: 0;
  z-index: 3;
}

.rc-motion .wave {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
}
/* Colour rotation across the six waves — amber, sky, cream */
.rc-motion .wave-l1, .rc-motion .wave-r2 { stroke: var(--rc-amber); }
.rc-motion .wave-l2, .rc-motion .wave-r3 { stroke: var(--rc-sky);   }
.rc-motion .wave-l3, .rc-motion .wave-r1 { stroke: var(--rc-cream); }

/* Each speaker emits a duration-tunable loop. Left & right are
   offset by ~1/6 of the cycle so the rings feel stereo.
   `backwards` fill-mode pins the 0% keyframe state during the delay
   so the rings never flash at full opacity before their turn. */
.rc-motion .wave-l1 { animation: rc-wave var(--rc-motion-waves-duration) cubic-bezier(.2,.6,.3,1) 0s    infinite backwards; }
.rc-motion .wave-l2 { animation: rc-wave var(--rc-motion-waves-duration) cubic-bezier(.2,.6,.3,1) calc(var(--rc-motion-waves-duration) * 0.33) infinite backwards; }
.rc-motion .wave-l3 { animation: rc-wave var(--rc-motion-waves-duration) cubic-bezier(.2,.6,.3,1) calc(var(--rc-motion-waves-duration) * 0.66) infinite backwards; }
.rc-motion .wave-r1 { animation: rc-wave var(--rc-motion-waves-duration) cubic-bezier(.2,.6,.3,1) calc(var(--rc-motion-waves-duration) * 0.16) infinite backwards; }
.rc-motion .wave-r2 { animation: rc-wave var(--rc-motion-waves-duration) cubic-bezier(.2,.6,.3,1) calc(var(--rc-motion-waves-duration) * 0.50) infinite backwards; }
.rc-motion .wave-r3 { animation: rc-wave var(--rc-motion-waves-duration) cubic-bezier(.2,.6,.3,1) calc(var(--rc-motion-waves-duration) * 0.83) infinite backwards; }

@keyframes rc-wave {
  0%   { transform: scale(0.75); opacity: 0;    stroke-width: 4px; }
  25%  { transform: scale(1.05); opacity: 0.32; stroke-width: 3px; }
  60%  { transform: scale(1.55); opacity: 0.48; stroke-width: 2px; }
  100% { transform: scale(2.1);  opacity: 0;    stroke-width: 1px; }
}

/* (Inner ripple rules retained as no-op stubs in case future markup
   re-introduces them — currently no .ripple elements in the SVG.) */
.rc-motion .ripple { display: none; }

/* Boombox — bobs in time with the waves (img element) */
@keyframes rc-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg) scale(1); }
  50%      { transform: translateY(-8px) rotate(2deg) scale(1.025); }
}

/* Speaker pulse dots — pop on every beat */
.rc-motion .speaker-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: rc-pop 1s ease-in-out infinite;
}
.rc-motion .speaker-pulse--right { animation-delay: 0.5s; }
@keyframes rc-pop {
  0%, 60%, 100% { opacity: 0; transform: scale(0.4); }
  30%           { opacity: 1; transform: scale(1); }
}

/* Wordmark that builds in beneath every cycle (img element) */
@keyframes rc-logo-build {
  0%   { opacity: 0; transform: translateY(28px) scale(0.92); }
  12%  { opacity: 0; transform: translateY(28px) scale(0.92); }
  28%  { opacity: 1; transform: translateY(0) scale(1); }
  85%  { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(8px) scale(0.96); }
}

/* Reveal mask for the wordmark — typewriter-like horizontal wipe */
.rc-motion .logo-clip-rect {
  animation: rc-logo-wipe 8s ease-out infinite;
}
@keyframes rc-logo-wipe {
  0%, 14%  { width: 0; }
  34%      { width: 440px; }
  100%     { width: 440px; }
}

/* Underline accent under the wordmark */
.rc-motion .logo-rule {
  transform-origin: 0 50%;
  transform-box: fill-box;
  animation: rc-rule-grow 8s ease-out infinite;
}
@keyframes rc-rule-grow {
  0%, 30%  { transform: scaleX(0); }
  44%      { transform: scaleX(1); }
  100%     { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .rc-motion .wave, .rc-motion .ripple,
  .rc-motion__boombox, .rc-motion__logo,
  .rc-motion .logo-rule {
    animation: none;
  }
  .rc-motion__logo { opacity: 1; }
}
.rc-hero__inner {
  position: relative;
  z-index: 3;
  padding: 104px var(--rc-edge-d) 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: unset;
}
@media (max-width: 720px) {
  .rc-hero__inner { padding: 40px var(--rc-edge-m) 56px; gap: 36px; }
}
.rc-hero__title {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(44px, 5.8vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--rc-cream);
  text-wrap: balance;
  max-width: 16ch;
}
.rc-hero__title .rc-amber { color: var(--rc-amber); }
.rc-hero__title .rc-italic { font-style: italic; }
.rc-hero__subline {
  font-family: var(--rc-font);
  font-weight: 600;
  font-size: clamp(20px, 1.75vw, 30px);
  line-height: 1.3;
  margin: 0;
  max-width: 38ch;
  color: var(--rc-cream);
  text-wrap: pretty;
}
.rc-hero__subline .rc-amber { color: var(--rc-amber); }
.rc-hero__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  border-top: 2px solid rgba(245,240,232,0.25);
  padding-top: 32px;
  margin-top: 8px;
}
.rc-hero__meta {
  font-family: var(--rc-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rc-amber);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 32ch;
}
.rc-hero__meta::before {
  content: ""; width: 32px; height: 3px; background: var(--rc-amber); flex-shrink: 0;
}

/* Amber CTA used on crimson surfaces */
.rc-btn--on-crimson {
  background: var(--rc-amber);
  color: var(--rc-crimson);
}
.rc-btn--on-crimson:hover {
  background: var(--rc-cream);
  color: var(--rc-crimson);
}

/* Hero photo — full-bleed section sitting beneath the crimson banner */
.rc-hero-photo {
  position: relative;
  background: var(--rc-black);
}
.rc-hero-photo image-slot {
  width: 100%;
  height: clamp(420px, 62vh, 760px);
  display: block;
}
.rc-hero-photo__caption {
  position: absolute;
  bottom: 20px;
  left: var(--rc-edge-d);
  z-index: 3;
  font-family: var(--rc-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rc-cream);
  background: var(--rc-crimson);
  padding: 8px 12px;
}
@media (max-width: 720px) {
  .rc-hero-photo__caption { left: var(--rc-edge-m); bottom: 12px; }
}
.rc-hero-photo__hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  color: rgba(245,240,232,0.45);
  font-family: var(--rc-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
  padding: 24px;
  text-align: center;
}
.rc-hero-photo__hint::before {
  content: "[ ]";
  font-size: 28px;
  letter-spacing: 0;
}
image-slot[has-image] ~ .rc-hero-photo__hint { display: none; }

/* =============================================================
   HOMEPAGE — Featured split band (echoes reference image)
   ============================================================= */
.rc-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
@media (max-width: 820px) {
  .rc-featured { grid-template-columns: 1fr; }
}
.rc-featured__quote {
  background: var(--rc-mid-teal);
  color: var(--rc-cream);
  padding: 64px var(--rc-edge-d);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.rc-featured__quote::before {
  content: "“";
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: 220px;
  line-height: 0.6;
  color: var(--rc-amber);
  margin-bottom: 8px;
}
.rc-featured__quote p {
  font-family: var(--rc-font);
  font-weight: 800;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.rc-featured__quote-attrib {
  margin-top: 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-amber);
}
.rc-featured__img image-slot { width: 100%; height: 100%; min-height: 380px; }

/* =============================================================
   GENERIC PAGE HEAD (about / work / contact)
   ============================================================= */
.rc-pagehead {
  padding: 96px var(--rc-edge-d) 64px;
  border-bottom: 2px solid var(--rc-black);
  position: relative;
  overflow: hidden;
}
.rc-pagehead--crimson { background: var(--rc-crimson); color: var(--rc-cream); }
.rc-pagehead--cream { background: var(--rc-cream); color: var(--rc-black); }
.rc-pagehead--teal { background: var(--rc-dark-teal); color: var(--rc-cream); }
@media (max-width: 720px) {
  .rc-pagehead { padding: 64px var(--rc-edge-m) 40px; }
}
.rc-pagehead__eyebrow {
  font-family: var(--rc-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rc-pagehead__eyebrow::before {
  content: "";
  width: 40px; height: 3px; background: currentColor; display: inline-block;
}
.rc-pagehead__title {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(64px, 11vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.rc-pagehead__sticker {
  position: absolute;
  right: -40px;
  top: 20px;
  width: 320px;
  opacity: 0.95;
  transform: rotate(-8deg);
  pointer-events: none;
}
@media (max-width: 820px) {
  .rc-pagehead__sticker { width: 180px; right: -20px; top: 10px; opacity: 0.5; }
}

/* =============================================================
   PAGE: ABOUT
   ============================================================= */
.rc-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 820px) {
  .rc-about { grid-template-columns: 1fr; }
}
.rc-about__photo {
  background: var(--rc-mid-teal);
  min-height: 640px;
  position: relative;
}
.rc-about__photo image-slot { width: 100%; height: 100%; min-height: 640px; }
.rc-about__photo-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--rc-amber);
  color: var(--rc-crimson);
  font-family: var(--rc-font);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 14px;
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 var(--rc-crimson);
  z-index: 3;
}
.rc-about__copy {
  padding: 80px var(--rc-edge-d);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 720px) {
  .rc-about__copy { padding: 48px var(--rc-edge-m); }
}
.rc-about__copy p {
  font-family: var(--rc-font);
  font-weight: 500;
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.45;
  margin: 0;
  text-wrap: pretty;
}
.rc-about__copy p:first-of-type {
  font-weight: 700;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.3;
}
.rc-about__copy p:first-of-type::first-letter {
  font-weight: 900;
  color: var(--rc-crimson);
}

.rc-working {
  background: var(--rc-crimson);
  color: var(--rc-cream);
  padding: 96px var(--rc-edge-d);
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .rc-working { padding: 64px var(--rc-edge-m); }
}
.rc-working__inner {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) {
  .rc-working__inner { grid-template-columns: 1fr; gap: 32px; }
}
.rc-working h2 {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(48px, 6.5vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--rc-amber);
}
.rc-working p {
  font-family: var(--rc-font);
  font-weight: 500;
  font-size: clamp(20px, 1.4vw, 24px);
  line-height: 1.45;
  margin: 0;
}
.rc-working__sticker {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 360px;
  transform: rotate(14deg);
  opacity: 0.4;
}

/* Mirror variant: body left, title right, icon bottom-left */
.rc-working--mirror .rc-working__inner {
  grid-template-columns: 1.4fr 1fr;
  margin-left: auto;
}
.rc-working--mirror .rc-working__inner > h2 {
  order: 2;
  text-align: right;
}
.rc-working--mirror .rc-working__inner > p {
  order: 1;
}
.rc-working--mirror .rc-working__sticker {
  right: auto;
  left: -60px;
  bottom: -80px;
  transform: rotate(-14deg);
}
@media (max-width: 820px) {
  .rc-working--mirror .rc-working__inner > h2 { text-align: left; }
}

/* =============================================================
   PAGE: SERVICES + PORTFOLIO
   ============================================================= */
.rc-services {
  padding: 96px var(--rc-edge-d);
  background: var(--rc-cream);
  border-bottom: 2px solid var(--rc-black);
}
@media (max-width: 720px) {
  .rc-services { padding: 64px var(--rc-edge-m); }
}
.rc-services__intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
@media (max-width: 820px) {
  .rc-services__intro { grid-template-columns: 1fr; gap: 16px; }
}
.rc-services__title {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 144px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  margin: 0;
}
.rc-services__intro p {
  font-family: var(--rc-font);
  font-weight: 500;
  font-size: clamp(20px, 1.4vw, 24px);
  line-height: 1.4;
  margin: 0;
  max-width: 56ch;
}
.rc-services__list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 2px solid var(--rc-black);
}
.rc-service {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 2px solid var(--rc-black);
  align-items: baseline;
  transition: background 220ms var(--rc-ease), padding 220ms var(--rc-ease);
}
.rc-service:hover { background: var(--rc-amber); padding-left: 16px; padding-right: 16px; }
@media (max-width: 820px) {
  .rc-service { grid-template-columns: 60px 1fr auto; gap: 16px; padding: 24px 0; }
  .rc-service__desc { grid-column: 1 / -1; }
}
.rc-service__num {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(22px, 1.6vw, 28px);
  color: var(--rc-crimson);
  letter-spacing: -0.01em;
}
.rc-service__title {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--rc-black);
}
.rc-service__desc {
  font-family: var(--rc-font);
  font-weight: 500;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.4;
  margin: 0;
  color: var(--rc-black);
}
.rc-services__foot {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--rc-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rc-mid-teal);
}
.rc-services__foot::before {
  content: ""; width: 40px; height: 3px; background: var(--rc-crimson);
}

.rc-portfolio {
  padding: 96px var(--rc-edge-d);
  background: var(--rc-dark-teal);
  color: var(--rc-cream);
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .rc-portfolio { padding: 64px var(--rc-edge-m); }
}
.rc-portfolio__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
@media (max-width: 820px) {
  .rc-portfolio__intro { grid-template-columns: 1fr; gap: 16px; }
}
.rc-portfolio__title {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 144px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--rc-amber);
}
.rc-portfolio__intro p {
  font-family: var(--rc-font);
  font-weight: 500;
  font-size: clamp(20px, 1.4vw, 24px);
  line-height: 1.4;
  margin: 0;
  color: var(--rc-cream);
  max-width: 50ch;
}
.rc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.rc-card {
  position: relative;
  background: var(--rc-mid-teal);
  color: var(--rc-cream);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 0;
  overflow: hidden;
  transition: transform 220ms var(--rc-ease);
}
.rc-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--rc-amber); }
.rc-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--rc-black);
  overflow: hidden;
}
.rc-card__media image-slot { width: 100%; height: 100%; }
.rc-card__num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  background: var(--rc-amber);
  color: var(--rc-crimson);
  padding: 6px 8px;
  z-index: 2;
}
.rc-card__play {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.14em;
  background: var(--rc-cream);
  color: var(--rc-dark-teal);
  padding: 6px 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rc-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--rc-dark-teal);
  border-top: 3px solid var(--rc-amber);
  flex: 1;
}
.rc-card__title {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--rc-cream);
}
.rc-card__desc {
  font-family: var(--rc-font);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--rc-sky);
  margin: 0;
  text-wrap: pretty;
}

/* Grid spans — varied layout for editorial feel */
.rc-card.span-6 { grid-column: span 6; }
.rc-card.span-4 { grid-column: span 4; }
.rc-card.span-3 { grid-column: span 3; }
.rc-card.span-8 { grid-column: span 8; }
@media (max-width: 820px) {
  .rc-card.span-6, .rc-card.span-4, .rc-card.span-3, .rc-card.span-8 { grid-column: span 12; }
}
.rc-card.is-tall .rc-card__media { aspect-ratio: 4 / 5; }
.rc-card.is-wide .rc-card__media { aspect-ratio: 16 / 9; }

/* =============================================================
   PAGE: CONTACT
   ============================================================= */
.rc-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 100px);
}
@media (max-width: 820px) {
  .rc-contact { grid-template-columns: 1fr; }
}
.rc-contact__left {
  background: var(--rc-crimson);
  color: var(--rc-cream);
  padding: 80px var(--rc-edge-d);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .rc-contact__left { padding: 48px var(--rc-edge-m); }
}
.rc-contact__title {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 128px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  margin: 0;
  position: relative;
  z-index: 1;
}
.rc-contact__title .rc-amber { color: var(--rc-amber); }
.rc-contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.rc-contact__info-row label {
  display: block;
  font-family: var(--rc-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-amber);
  margin-bottom: 6px;
}
.rc-contact__info-row a {
  font-family: var(--rc-font);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: -0.01em;
  border-bottom: 2px solid transparent;
  display: inline-block;
  transition: border-color 120ms var(--rc-ease);
}
.rc-contact__info-row a:hover { border-bottom-color: var(--rc-amber); }
.rc-contact__sticker {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 380px;
  transform: rotate(12deg);
  opacity: 0.4;
}
.rc-contact__right {
  background: var(--rc-cream);
  color: var(--rc-black);
  padding: 80px var(--rc-edge-d);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 720px) {
  .rc-contact__right { padding: 48px var(--rc-edge-m); }
}
.rc-form { display: flex; flex-direction: column; gap: 24px; }
.rc-field { display: flex; flex-direction: column; gap: 8px; }
.rc-field label {
  font-family: var(--rc-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-crimson);
}
.rc-field input,
.rc-field textarea {
  font-family: var(--rc-font);
  font-weight: 500;
  font-size: 19px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--rc-black);
  padding: 12px 0;
  color: var(--rc-black);
  border-radius: 0;
  resize: none;
  width: 100%;
  outline: none;
  transition: border-color 120ms var(--rc-ease);
}
.rc-field input:focus,
.rc-field textarea:focus {
  border-bottom-color: var(--rc-crimson);
  border-bottom-width: 3px;
}
.rc-field textarea { min-height: 140px; }
.rc-field input::placeholder,
.rc-field textarea::placeholder {
  color: rgba(26,26,26,0.45);
  font-weight: 500;
}

/* =============================================================
   MARQUEE strip
   ============================================================= */
.rc-marquee {
  background: var(--rc-amber);
  color: var(--rc-crimson);
  border-top: 4px solid var(--rc-black);
  border-bottom: 4px solid var(--rc-black);
  overflow: hidden;
  position: relative;
  padding: 18px 0;
}
.rc-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: rc-marquee 38s linear infinite;
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rc-marquee__track span { display: inline-flex; align-items: center; gap: 48px; }
.rc-marquee__track .dot {
  width: 14px; height: 14px; background: var(--rc-crimson); display: inline-block; border-radius: 50%;
}
@keyframes rc-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   IMAGE SLOTS — visual treatment to feel branded even when empty
   ============================================================= */
image-slot {
  --slot-bg: var(--rc-mid-teal);
  --slot-ink: var(--rc-cream);
  display: block;
}

/* =============================================================
   DECORATIVE MARKS
   Small, restrained typographic glyphs used as accents.
   ============================================================= */
.rc-mark {
  display: inline-block;
  font-family: var(--rc-font);
  font-weight: 900;
  line-height: 1;
  color: var(--rc-amber);
}
.rc-mark--star { font-size: 0.55em; vertical-align: 0.55em; padding-left: 0.15em; }
.rc-mark--dot  { font-size: 0.5em;  vertical-align: 0.35em; padding-left: 0.15em; }
.rc-mark--crimson { color: var(--rc-crimson); }
.rc-mark--cream { color: var(--rc-cream); }

/* Tiny tag chip — used for portfolio category labels, etc */
.rc-chip {
  display: inline-block;
  font-family: var(--rc-font);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--rc-amber);
  color: var(--rc-crimson);
  line-height: 1;
}
.rc-chip--outline {
  background: transparent;
  color: var(--rc-amber);
  border: 2px solid var(--rc-amber);
  padding: 2px 6px;
}
.rc-chip--sky {
  background: var(--rc-sky);
  color: var(--rc-dark-teal);
}

/* Service-row hover arrow */
.rc-service__arrow {
  font-family: var(--rc-font);
  font-weight: 900;
  font-size: clamp(24px, 2vw, 32px);
  color: var(--rc-crimson);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms var(--rc-ease), transform 220ms var(--rc-ease);
  justify-self: end;
  align-self: center;
}
.rc-service:hover .rc-service__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Tri-dot section separator — sits between sections to add quiet rhythm */
.rc-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
  background: var(--rc-cream);
}
.rc-dots span {
  width: 8px; height: 8px;
  background: var(--rc-crimson);
  border-radius: 50%;
}
.rc-dots span:nth-child(2) { background: var(--rc-amber); }
/* Placeholder labels for unfilled slots */
.rc-slot-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
  font-family: var(--rc-font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  z-index: 1;
  padding: 24px;
  text-align: center;
  gap: 12px;
}
.rc-slot-label::before {
  content: "[ ]";
  font-size: 32px;
  letter-spacing: 0;
}

/* When user drops an image into image-slot, hide the label */
image-slot[data-has-image] + .rc-slot-label,
image-slot[has-image] + .rc-slot-label { display: none; }

/* ============================================================
   SCROLL REVEAL — basic fade-up on scroll into view
   ============================================================ */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sr.sr--visible {
  opacity: 1;
  transform: translateY(0);
}
.sr--d1 { transition-delay: 0.08s; }
.sr--d2 { transition-delay: 0.16s; }
.sr--d3 { transition-delay: 0.24s; }
.sr--d4 { transition-delay: 0.32s; }

/* Hero elements animate on load, not scroll */
.rc-hero .rc-hero__meta  { animation: rc-hero-fadein 0.7s ease 0.2s both; }
.rc-hero .rc-hero__title { animation: rc-hero-fadein 0.7s ease 0.4s both; }
.rc-hero .rc-hero__bottom { animation: rc-hero-fadein 0.7s ease 0.6s both; }
@keyframes rc-hero-fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rc-slot-label { display: none; }
