/* ============================================
   Base & Resets
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  background: #0f0f0f;
}

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

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

a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

/* ============================================
   Caymus Landing Section — Background image, text overlaid
   ============================================ */
.caymus-landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a1e1a url("../images/Caymus-Image-16x9-Edit.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  overflow: hidden;
}

@media (min-width: 900px) {
  .caymus-landing {
    background-attachment: fixed;
  }
}

/* Gradient: left + bottom — warm red like top, less purple */
.caymus-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(58, 26, 26, 0.36) 0%,
      rgba(54, 26, 27, 0.14) 35%,
      transparent 55%
    ),
    linear-gradient(
      to right,
      rgba(58, 26, 26, 0.5) 0%,
      rgba(54, 26, 27, 0.33) 22%,
      rgba(50, 27, 28, 0.14) 42%,
      transparent 62%
    );
  z-index: 0;
}

.caymus-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2.5rem 4rem;
  overflow-y: auto;
  animation: caymus-fade-in 1s ease-out both;
}

@media (prefers-reduced-motion: reduce) {
  .caymus-content {
    animation: none;
  }
}

@keyframes caymus-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.caymus-branding {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Caymus logo: larger */
.caymus-branding .caymus-logo {
  margin: 0 auto 1.75rem;
  max-height: 200px;
  width: auto;
}

/* Title wrap: centered with logo */
.caymus-branding .caymus-title-wrap {
  text-align: center;
  max-width: 42em;
  margin-left: auto;
  margin-right: auto;
}

/* Main title: one line, same line length as tagline below */
.caymus-title {
  font-family: 'abril-titling', Georgia, serif;
  font-size: clamp(2.1rem, 4.7vw, 2.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f8f4ed;
  margin: 0 0 0.6rem;
  line-height: 1.15;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Subtitle: one line, centered with logo */
.caymus-tagline {
  font-family: 'atf-franklin-gothic', -apple-system, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #f5f0e6;
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
}

.caymus-points {
  max-width: 38em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5rem;
}

.caymus-point {
  position: relative;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition: opacity 0.55s ease-out, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease-out;
}

.caymus-point.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.caymus-point:last-child {
  margin-bottom: 0;
}

/* Inner cascade: title first, then quote */
.caymus-point h2 {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease-out 0.08s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.caymus-point blockquote {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s ease-out 0.2s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, color 0.25s ease;
}

.caymus-point.is-visible h2,
.caymus-point.is-visible blockquote {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .caymus-point {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .caymus-point h2,
  .caymus-point blockquote {
    opacity: 1;
    transform: none;
  }
}

/* Principle titles: larger */
.caymus-point h2 {
  font-family: 'abril-titling', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #f8f4ed;
  margin: 0 0 0.4rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.caymus-point h2 strong {
  font-weight: 600;
  color: #f8f4ed;
}

/* Quotes: larger, aligned under "N" in No. */
.caymus-point blockquote {
  font-family: 'atf-franklin-gothic', -apple-system, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #FFF899;
  margin: 0;
  padding-left: 0;
  border: none;
  line-height: 1.55;
  font-style: normal;
}

.caymus-point blockquote::before,
.caymus-point blockquote::after {
  content: none;
}

@media (max-width: 900px) {
  .caymus-landing {
    background-position: center center;
    background-size: cover;
  }
  .caymus-title,
  .caymus-tagline {
    white-space: normal;
  }
}

