/* GCYF — Sunny Sky palette */
:root {
  --navy: #0a2f6b;
  --navy-deep: #071f4a;
  --sky: #2eb8f0;
  --sky-bright: #5cc8f5;
  --sky-soft: #e8f7fd;
  --sun: #ffd23f;
  --sun-deep: #f5b800;
  --coral: #ff6b5a;
  --mint: #2ecf9a;
  --white: #ffffff;
  --ink: #1a2a44;
  --ink-soft: #4a5d7a;
  --fog: #f3f9fc;
  --max: 1120px;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(10, 47, 107, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 110;
}

.logo img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.logo-text span {
  color: var(--sun);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  transition: color 0.25s;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--sun);
  transition: width 0.3s var(--ease);
}

.nav-links a:not(.btn):hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links .btn-nav {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.header-phone {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--sky);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 74, 0.35) 0%, rgba(7, 31, 74, 0.15) 40%, rgba(7, 31, 74, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 47, 107, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 0 0 5.5rem;
  animation: riseIn 1s var(--ease) 0.15s both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.brand-mark .y {
  color: var(--sun);
  display: inline-block;
  animation: yBounce 2.4s var(--ease) 1s infinite;
}

@keyframes yBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  font-weight: 500;
  max-width: 18ch;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.hero-lead {
  font-size: 1.125rem;
  max-width: 36ch;
  opacity: 0.95;
  margin-bottom: 1.75rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sun {
  background: var(--sun);
  color: var(--navy-deep);
}

.btn-sun:hover {
  background: var(--sun-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-deep);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(255, 210, 63, 0.35), transparent 50%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(46, 184, 240, 0.3), transparent 45%),
    linear-gradient(160deg, var(--sky-soft) 0%, #fff 55%, #e6fff6 100%);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(46, 207, 154, 0.12) 0 8px, transparent 9px),
    radial-gradient(circle at 70% 60%, rgba(255, 107, 90, 0.12) 0 6px, transparent 7px),
    radial-gradient(circle at 85% 25%, rgba(46, 184, 240, 0.15) 0 10px, transparent 11px);
  background-size: 120px 120px, 90px 90px, 140px 140px;
  pointer-events: none;
  animation: driftDots 40s linear infinite;
}

@keyframes driftDots {
  to {
    background-position: 120px 80px, -60px 40px, 40px -50px;
  }
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--navy);
  line-height: 1.1;
  position: relative;
}

.page-hero p {
  margin-top: 0.75rem;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 1.15rem;
  position: relative;
}

section {
  padding: 5rem 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.mission {
  background: linear-gradient(180deg, var(--fog) 0%, var(--white) 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.mission-copy .section-title {
  margin-bottom: 1.25rem;
}

.mission-copy p {
  color: var(--ink-soft);
}

.mission-copy p + p {
  margin-top: 1rem;
}

.scripture {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--sun);
  background: linear-gradient(90deg, rgba(255, 210, 63, 0.15), transparent);
}

.scripture blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.45;
}

.scripture cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 800;
  color: var(--coral);
  font-size: 0.9rem;
}

.mission-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2rem 2rem 2rem 0.5rem;
  overflow: hidden;
}

.mission-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(10, 47, 107, 0.5));
}

.involve {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.involve::before {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 184, 240, 0.25), transparent 65%);
  top: -20%;
  right: -10%;
  pointer-events: none;
}

.involve .section-label {
  color: var(--sun);
}

.involve .section-title {
  color: var(--white);
}

.involve .section-lead {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.5rem;
}

.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.involve-item {
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--sun);
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s, transform 0.3s var(--ease);
}

.involve-item:nth-child(2) {
  border-top-color: var(--sky);
}

.involve-item:nth-child(3) {
  border-top-color: var(--mint);
}

.involve-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.involve-item h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin-bottom: 0.65rem;
}

.involve-item p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.involve-item .link {
  font-weight: 800;
  color: var(--sun);
}

.involve-item .link:hover {
  color: var(--white);
}

.serve {
  background: linear-gradient(135deg, var(--sky-soft), #fff 40%, #fff8e6);
}

.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.serve-panel {
  position: relative;
  min-height: 280px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  overflow: hidden;
  border-radius: 1.25rem;
}

.serve-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.serve-panel:hover img {
  transform: scale(1.06);
}

.serve-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 31, 74, 0.85) 100%);
}

.serve-panel > * {
  position: relative;
  z-index: 1;
}

.serve-panel .age {
  display: inline-block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 0.4rem;
}

.serve-panel h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin-bottom: 0.4rem;
}

.serve-panel p {
  opacity: 0.9;
  margin-bottom: 1rem;
  max-width: 32ch;
}

.serve-panel.coral-tint::after {
  background: linear-gradient(180deg, transparent 15%, rgba(180, 50, 40, 0.75) 100%);
}

.serve-panel.mint-tint::after {
  background: linear-gradient(180deg, transparent 15%, rgba(10, 90, 70, 0.8) 100%);
}

.schedule {
  padding: 3.5rem 0;
  background: linear-gradient(90deg, var(--sky), var(--mint));
  color: var(--white);
}

.schedule-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.schedule h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.schedule-copy p {
  margin-top: 0.35rem;
  opacity: 0.95;
  font-weight: 600;
}

.schedule-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.schedule-times {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.time-chip {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
}

.time-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.time-chip span {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.value {
  padding: 1.5rem 0;
  border-top: 3px solid var(--sky);
}

.value:nth-child(2) {
  border-top-color: var(--sun);
}

.value:nth-child(3) {
  border-top-color: var(--coral);
}

.value:nth-child(4) {
  border-top-color: var(--mint);
}

.value:nth-child(5) {
  border-top-color: var(--sky-bright);
}

.value:nth-child(6) {
  border-top-color: var(--sun-deep);
}

.value:nth-child(7) {
  border-top-color: var(--coral);
}

.value:nth-child(8) {
  border-top-color: var(--navy);
}

.value h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.value p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.content-block {
  padding: 4rem 0;
}

.content-block + .content-block {
  padding-top: 0;
}

.prose {
  max-width: 65ch;
}

.prose h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.75rem;
  margin: 2rem 0 0.75rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

.prose ul {
  margin: 1rem 0 1.5rem;
}

.prose li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sky);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.topic {
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--navy);
}

.topic:nth-child(3n) {
  background: #fff4c8;
}

.topic:nth-child(3n + 1) {
  background: #dff8ee;
}

.topic:nth-child(3n + 2) {
  background: #ffe4e0;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  padding-top: 1rem;
  border-top: 3px solid var(--sun);
}

.feature:nth-child(2) {
  border-top-color: var(--sky);
}

.feature:nth-child(3) {
  border-top-color: var(--mint);
}

.feature h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.feature p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-info p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.contact-list li {
  margin-bottom: 1rem;
  color: var(--ink);
  font-weight: 700;
}

.contact-list span {
  display: block;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border: 2px solid #d5e8f2;
  border-radius: 0.75rem;
  background: var(--fog);
  color: var(--ink);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--white);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
}

.footer-brand span {
  font-size: 0.9rem;
  color: var(--sun);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.footer-nav a {
  font-weight: 700;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--sun);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: var(--sun);
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--white);
}

.dev-credit {
  width: 100%;
  text-align: center;
  margin-top: 0.35rem;
}

.dev-credit-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 800;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.dev-credit-btn:hover {
  color: var(--sun);
}

.form-note.is-success {
  color: #0a7a4d;
}

.form-note.is-error {
  color: #c0392b;
}

.jakpar-honeypot {
  display: none !important;
  position: absolute;
  left: -9999px;
}

body.modal-open {
  overflow: hidden;
}

.jakpar-modal[hidden] {
  display: none !important;
}

.jakpar-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.jakpar-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.jakpar-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  background: #141414;
  color: #f5f5f5;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.jakpar-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.jakpar-modal__close:hover {
  color: #fff;
}

.jakpar-modal__head h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.jakpar-modal__head p {
  color: #a8a8a8;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.jakpar-modal__form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.jakpar-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.jakpar-modal__form input,
.jakpar-modal__form textarea {
  font: inherit;
  font-weight: 600;
  padding: 0.75rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid #333;
  background: #1c1c1c;
  color: #fff;
}

.jakpar-modal__form input:focus,
.jakpar-modal__form textarea:focus {
  outline: none;
  border-color: #2ec4b6;
  box-shadow: 0 0 0 2px rgba(46, 196, 182, 0.25);
}

.jakpar-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.jakpar-modal__work {
  color: #a8a8a8;
  font-weight: 700;
  font-size: 0.9rem;
}

.jakpar-modal__work:hover {
  color: #fff;
}

.jakpar-modal__submit {
  background: #2ec4b6;
  color: #0a0a0a;
  border: none;
  border-radius: 0.65rem;
  font: inherit;
  font-weight: 800;
  padding: 0.75rem 1.2rem;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jakpar-modal__submit:hover {
  background: #3ad4c5;
}

.jakpar-modal__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.jakpar-modal__ghost {
  background: transparent;
  border: 1px solid #444;
  color: #f5f5f5;
  border-radius: 0.65rem;
  font: inherit;
  font-weight: 700;
  padding: 0.75rem 1.2rem;
  cursor: pointer;
}

.jakpar-modal__ghost:hover {
  border-color: #777;
}

.jakpar-modal__success {
  text-align: center;
  padding: 1.25rem 0.5rem 0.5rem;
}

.jakpar-modal__check {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.15);
  color: #2ec4b6;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.jakpar-modal__success h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.jakpar-modal__success p {
  color: #a8a8a8;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.jakpar-modal__success strong {
  color: #fff;
}

.jakpar-modal__success-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.jakpar-modal__form .form-note {
  margin-top: 0.75rem;
  min-height: 1.2em;
}

.jakpar-modal__form .form-note.is-success {
  color: #2ec4b6;
}

.jakpar-modal__form .form-note.is-error {
  color: #ff7b6b;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}

.contact-list a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .jakpar-modal__row {
    grid-template-columns: 1fr;
  }

  .jakpar-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 900px) {
  .mission-grid,
  .serve-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .involve-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .values-list {
    grid-template-columns: 1fr 1fr;
  }

  .mission-visual {
    max-height: 360px;
    aspect-ratio: 16 / 10;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    color: var(--white) !important;
    font-size: 1.35rem;
  }

  .nav-links .btn-nav {
    color: var(--navy-deep) !important;
    font-size: 1rem;
  }

  .nav-links .header-phone {
    color: var(--sun) !important;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-header.menu-open .logo-text {
    color: var(--white);
  }

  .site-header.menu-open .nav-toggle span {
    background: var(--white);
  }
}

@media (max-width: 1100px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 560px) {
  .values-list {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 4rem;
  }
}
