/* GC Hero Banner Type 2 — "message from" split hero: copy + signature left, image right. */

@keyframes gch2-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gch2-rise-side { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.gch2 {
  --gh2-accent: #5BA7DB;
  --gh2-accent-deep: #3D82B3;
  --gh2-ink: #14212B;
  --gh2-muted: #5A6B75;
  --gh2-note: #D97B2E;
  --gh2-line: #DCEEFA;
  --gh2-card-ratio: 0.92;
  position: relative;
  padding: 72px 0;
  color: var(--gh2-ink);
  font-family: var(--gc-font-body, 'Inter', system-ui, sans-serif);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

.gch2 *,
.gch2 *::before,
.gch2 *::after { box-sizing: border-box; margin: 0; padding: 0; }

.gch2-wrap { max-width: var(--gch2-max, var(--gc-container, 1312px)); margin: 0 auto; padding: 0 clamp(24px, 4vw, 64px); }
/* Edge to edge band, with the wrap above still capping the content inside it. */
.gch2--full { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }

.gch2-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.gch2--img-left .gch2-card-wrap { order: -1; }

/* --- Copy --- */
.gch2-eyebrow {
  display: block;
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gh2-muted);
  margin-bottom: 14px;
  animation: gch2-rise 0.7s ease both;
}

.gch2-head {
  font-family: var(--gc-font-heading, 'Manrope', system-ui, sans-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--gh2-accent);
  margin-bottom: 26px;
  animation: gch2-rise 0.7s ease both;
  animation-delay: 0.06s;
}

.gch2-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: gch2-rise 0.7s ease both;
  animation-delay: 0.12s;
}

.gch2-p {
  font-size: 1.02rem;
  color: var(--gh2-muted);
  max-width: 56ch;
}

.gch2-p--intro {
  color: var(--gh2-ink);
  padding-left: 20px;
  border-left: 3px solid var(--gh2-line);
}

.gch2-p--italic { font-style: italic; }

/* --- Signature --- */
.gch2-sign {
  text-align: center;
  margin-top: 40px;
  animation: gch2-rise 0.7s ease both;
  animation-delay: 0.18s;
}

.gch2-sign-name {
  display: block;
  font-family: var(--gc-font-heading, 'Manrope', system-ui, sans-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--gh2-accent);
}

.gch2-sign-title {
  display: block;
  margin-top: 8px;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--gh2-muted);
}

/* --- CTA --- */
.gch2-cta {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: gch2-rise 0.7s ease both;
  animation-delay: 0.24s;
}

.gch2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: var(--gc-radius-sm, 10px);
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--gh2-accent), #6EC1E4);
  box-shadow: var(--gc-shadow-button, 0 8px 20px -8px rgba(61, 130, 179, 0.55));
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.gch2-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 12px 28px -8px rgba(61, 130, 179, 0.65);
}

.gch2-note {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gh2-note);
}

/* --- Image --- */
.gch2-card-wrap {
  position: relative;
  animation: gch2-rise-side 0.8s ease both;
  animation-delay: 0.18s;
}

.gch2-card {
  display: block;
  position: relative;
  aspect-ratio: var(--gh2-card-ratio);
  border-radius: var(--gc-radius-md, 16px);
  overflow: hidden;
  background: var(--gc-blue-light, #EAF3FA);
  border: 1px solid color-mix(in srgb, var(--gh2-accent) 45%, transparent);
  box-shadow:
    0 30px 60px -24px rgba(20, 33, 43, 0.4),
    0 0 24px color-mix(in srgb, var(--gh2-accent) 22%, transparent);
  transition: box-shadow 0.4s, transform 0.4s, border-color 0.3s;
}

.gch2-card:hover {
  border-color: color-mix(in srgb, var(--gh2-accent) 72%, transparent);
  box-shadow:
    0 36px 72px -22px rgba(20, 33, 43, 0.5),
    0 0 44px color-mix(in srgb, var(--gh2-accent) 48%, transparent);
}

a.gch2-card:hover { transform: translateY(-4px); }

.gch2-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 880px) {
  .gch2-grid { grid-template-columns: 1fr; }
  .gch2--img-left .gch2-card-wrap { order: 0; }
  .gch2-p { max-width: none; }
}

@media (max-width: 640px) {
  .gch2 { padding: 48px 0; --gh2-card-ratio: 1.7778; }
  .gch2-wrap { padding: 0 20px; }
  .gch2-grid { gap: 26px; }
  .gch2-eyebrow { font-size: 0.88rem; margin-bottom: 10px; }
  .gch2-head { font-size: clamp(1.75rem, 7.5vw, 2.1rem); margin-bottom: 16px; }
  .gch2-body { gap: 14px; }
  .gch2-p { font-size: 15px; line-height: 1.5; }
  .gch2-p--intro { padding-left: 14px; }
  .gch2-sign { margin-top: 24px; }
  .gch2-sign-name { font-size: 1.25rem; }
  .gch2-sign-title { margin-top: 4px; font-size: 0.92rem; }
  .gch2-cta { margin-top: 22px; gap: 10px; }
  .gch2-btn { width: 100%; padding: 0.8rem 1.2rem; min-height: 44px; letter-spacing: 0.03em; }
  .gch2-note { font-size: 0.85rem; }
  .gch2-card { box-shadow: 0 14px 30px -18px rgba(20, 33, 43, 0.35); }
  .gch2-card:hover { box-shadow: 0 14px 30px -18px rgba(20, 33, 43, 0.35); }
}

@media (max-width: 480px) {
  .gch2 { padding: 40px 0; }
  .gch2-wrap { padding: 0 16px; }
  .gch2-grid { gap: 22px; }
  .gch2-head { font-size: clamp(1.55rem, 7vw, 1.9rem); }
  .gch2-p { font-size: 14.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .gch2-eyebrow,
  .gch2-head,
  .gch2-body,
  .gch2-sign,
  .gch2-cta,
  .gch2-card-wrap { animation: none; }
}
