/* ==============================================
   Hero Section — full-viewport split layout
   ============================================== */
.ch-hero {
  min-height: 75vh;
  position: relative;
  overflow: hidden;
  background: var(--navy-deep, #001838);
}

/* SVG ice-rink background */
.ch-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ch-hero-bg svg {
  width: 100%;
  height: 100%;
}

/* Shimmer sweep */
.ch-hero-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 184, 200, 0.03), transparent);
  animation: heroShimmer 4s 1.5s infinite linear;
  pointer-events: none;
  z-index: 1;
}

@keyframes heroShimmer {
  from { transform: translateX(-170%); }
  to   { transform: translateX(270%); }
}

/* Diagonal stripes overlay */
.ch-hero-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(168, 184, 200, 0.018) 40px,
    rgba(168, 184, 200, 0.018) 41px
  );
  pointer-events: none;
  z-index: 1;
}

/* ==============================================
   Two-column inner grid
   ============================================== */
.ch-hero-inner {
  max-width: var(--content-max-width, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  position: relative;
  z-index: 2;
}

/* ==============================================
   Left column — text content
   ============================================== */
.ch-hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 3rem 4rem 4rem;
}

/* Eyebrow */
.ch-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.2s forwards;
}

.ch-hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--silver);
}

/* Title */
.ch-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.88;
  letter-spacing: -1px;
  color: var(--white);
  margin: 0 0 2rem;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.35s forwards;
}

/* Stroke-outline accent line */
.ch-hero-title .ch-hero-line-accent {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--silver-light, #D8E4EE);
}

.ch-hero-title .ch-hero-line {
  display: block;
}

/* Description */
.ch-hero-desc {
  max-width: 400px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.5s forwards;
}

/* Buttons */
.ch-hero-actions {
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.65s forwards;
}

.ch-btn-solid {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy-deep, #001838);
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.ch-btn-solid:hover {
  background: var(--silver-light);
  transform: translateY(-1px);
}

.ch-btn-outline {
  font-family: 'DM Sans', sans-serif;
  background: transparent;
  color: var(--silver-light);
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(168, 184, 200, 0.4);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.ch-btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

/* Legacy aliases — used by other shortcodes */
.ch-btn-primary {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy-deep, #001838);
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.ch-btn-primary:hover { background: var(--silver-light); transform: translateY(-1px); }

.ch-btn-ghost {
  font-family: 'DM Sans', sans-serif;
  background: transparent;
  color: var(--silver-light);
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(168, 184, 200, 0.4);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.ch-btn-ghost:hover { border-color: var(--white); color: var(--white); }

/* ==============================================
   Right column — watermark area
   ============================================== */
.ch-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Watermark image (logo, wolf SVG, etc.) */
.ch-hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: heroFadeIn 1.4s 0.3s forwards;
  pointer-events: none;
  padding: 4rem;
}

.ch-hero-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.12;
  filter: brightness(1.5) saturate(0.3);
}

/* Ghost text in bottom-right */
.ch-hero-ghost {
  position: absolute;
  bottom: 4rem;
  left: 3rem;
  right: 1rem;
  z-index: 3;
  font-family: 'Anton', sans-serif;
  font-size: clamp(60px, 8vw, 100px);
  color: rgba(168, 184, 200, 0.07);
  letter-spacing: 8px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  animation: heroFadeIn 1s 0.9s forwards;
}

/* ==============================================
   Background image mode (optional)
   ============================================== */
.ch-hero-has-image .ch-hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ch-hero-has-image .ch-hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.35) saturate(0.5);
}

.ch-hero-has-image .ch-hero-bg {
  display: none;
}

/* Navy overlay on image mode */
.ch-hero-navy-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 24, 56, 0.7);
  z-index: 0;
}

/* ==============================================
   Animations
   ============================================== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ==============================================
   Responsive — Tablet
   ============================================== */
@media (max-width: 980px) {
  .ch-hero {
    min-height: auto;
  }

  .ch-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ch-hero-left {
    padding: 100px 2rem 3rem;
    text-align: left;
  }

  .ch-hero-title {
    font-size: clamp(56px, 12vw, 90px);
  }

  .ch-hero-right {
    display: none;
  }

  .ch-hero-actions {
    flex-wrap: wrap;
  }
}

/* ==============================================
   Responsive — Phone
   ============================================== */
@media (max-width: 480px) {
  .ch-hero-left {
    padding: 90px 1.25rem 2.5rem;
  }

  .ch-hero-title {
    font-size: clamp(48px, 14vw, 70px);
  }

  .ch-hero-desc {
    font-size: 14px;
  }

  .ch-hero-actions {
    flex-direction: column;
  }

  .ch-btn-solid,
  .ch-btn-outline {
    width: 100%;
    text-align: center;
  }

  .ch-hero-eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
  }
}
