/* ===== CHANNEL PAGE ===== */
.channel-page {
  min-height: 100vh;
  background: var(--cream);
}

/* NAV (slim, scoped to this page) */
.channel-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.channel-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
}
.channel-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.3px;
  text-decoration: none;
}
.channel-nav-logo:hover { opacity: 0.8; }

/* HERO */
.channel-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.channel-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.channel-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.channel-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.channel-tagline {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
}

.channel-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.channel-monogram {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 0.95;
  background: linear-gradient(135deg, var(--amber) 0%, var(--green) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.channel-monogram-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  z-index: 1;
}
.channel-house {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 110px;
  height: auto;
  opacity: 0.55;
}

/* INTRO */
.channel-intro {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.channel-intro-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 32px 112px;
}
.channel-intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.channel-intro p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.channel-intro p:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .channel-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 40px;
  }
  .channel-visual {
    order: -1;
  }
  .channel-monogram {
    max-width: 260px;
    aspect-ratio: 1 / 0.95;
  }
  .channel-intro-inner {
    padding: 64px 24px 80px;
  }
  .channel-nav-inner {
    padding: 14px 24px;
  }
  .channel-video-inner {
    padding: 56px 24px;
  }
  .channel-cta-card {
    padding: 56px 24px;
  }
}

/* VIDEO EMBED */
.channel-video {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.channel-video-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 96px 32px;
}
.channel-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.channel-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.channel-video-caption {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* AGENT CTA */
.channel-cta {
  background: var(--green);
  color: #fff;
}
.channel-cta-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}
.channel-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 12px;
}
.channel-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.channel-cta-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 28px;
}
.channel-cta-btn {
  background: var(--amber);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.15s;
  display: inline-block;
}
.channel-cta-btn:hover { background: var(--amber-light); }
