:root {
  --ink: #251f1d;
  --muted: #6b625e;
  --cream: #fffaf0;
  --paper: #ffffff;
  --wine: #7c1f2d;
  --wine-dark: #53131e;
  --gold: #edae2b;
  --olive: #55633a;
  --sage: #dfe8cb;
  --line: rgba(67, 48, 40, 0.14);
  --shadow: 0 24px 70px rgba(72, 37, 28, 0.13);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(circle at 12% 12%, rgba(237,174,43,.13), transparent 26%), radial-gradient(circle at 88% 28%, rgba(85,99,58,.12), transparent 24%);
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 99;
  padding: .7rem 1rem;
  background: white;
  border-radius: 10px;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, .94);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 36px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand img { width: 54px; height: 64px; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand small { margin-top: 5px; color: var(--wine); font: 700 .68rem/1.1 Inter, sans-serif; letter-spacing: .16em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 7px; }
.site-nav a {
  padding: .67rem .85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 750;
  font-size: .93rem;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--wine); background: rgba(124,31,45,.09); }
.site-nav .nav-cta { color: white; background: var(--wine); }
.site-nav .nav-cta:hover { color: white; background: var(--wine-dark); }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--wine);
  cursor: pointer;
}

.menu-button span, .menu-button::before, .menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.wrap { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--wine);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 99px; background: var(--gold); }

h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.25rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4.15rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
p { margin: 0 0 1.15rem; }

.hero { padding: 58px 0 82px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(38px, 7vw, 90px); }
.hero h1 span { color: var(--wine); }
.hero .lead { max-width: 650px; margin: 1.5rem 0 2rem; color: var(--muted); font-size: clamp(1.07rem, 1.6vw, 1.28rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.25rem;
  border: 2px solid var(--wine);
  border-radius: 999px;
  color: white;
  background: var(--wine);
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(124,31,45,.2); background: var(--wine-dark); }
.button.secondary { color: var(--wine); background: transparent; }
.button.secondary:hover { color: white; }

.hero-art { position: relative; min-height: 560px; }
.hero-photo {
  position: absolute;
  inset: 0 0 38px 54px;
  width: calc(100% - 54px);
  height: calc(100% - 38px);
  object-fit: cover;
  border-radius: 42% 58% 24% 76% / 38% 28% 72% 62%;
  box-shadow: var(--shadow);
}
.mascot-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 174px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 44px rgba(49, 32, 28, .2);
}
.mascot-card img { height: 152px; margin: 0 auto; object-fit: contain; }

.quick-facts {
  margin-top: -28px;
  position: relative;
  z-index: 3;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 50px rgba(70, 43, 34, .08);
}
.fact { padding: 24px 28px; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact strong { display: block; color: var(--wine); font-family: Georgia, serif; font-size: 1.4rem; }
.fact span { color: var(--muted); font-size: .92rem; }

.section { padding: 100px 0; }
.section.tight { padding-top: 70px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.section-heading p { max-width: 520px; color: var(--muted); }
.tinted { background: #f1eddf; }
.dark { color: white; background: var(--wine-dark); }
.dark .eyebrow { color: #ffd67f; }
.dark .section-heading p, .dark p { color: rgba(255,255,255,.78); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(38px, 8vw, 96px); }
.split-copy p { color: var(--muted); }
.photo-frame { position: relative; }
.photo-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-frame::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1; border-radius: var(--radius); background: var(--gold); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 30px rgba(58,36,27,.05);
}
.card-number { display: inline-grid; width: 44px; height: 44px; margin-bottom: 36px; place-items: center; border-radius: 14px; color: white; background: var(--wine); font-weight: 900; }
.card p { color: var(--muted); margin-top: .8rem; }
.text-link { color: var(--wine); font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 22px; background: #ddd; }
.gallery figure:nth-child(1), .gallery figure:nth-child(4) { grid-column: span 7; }
.gallery figure:nth-child(2), .gallery figure:nth-child(3) { grid-column: span 5; }
.gallery figure:nth-child(5), .gallery figure:nth-child(6) { grid-column: span 6; }
.gallery img { width: 100%; height: 300px; object-fit: cover; transition: transform .35s ease; }
.gallery figure:hover img { transform: scale(1.035); }

.page-hero { padding: 72px 0 64px; }
.page-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
.page-hero h1 { font-size: clamp(3.1rem, 6vw, 6rem); }
.page-hero p { max-width: 650px; margin-top: 1.4rem; color: var(--muted); font-size: 1.15rem; }
.page-hero img { width: 100%; height: 430px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.quote { padding: 34px; border-left: 6px solid var(--gold); border-radius: 0 22px 22px 0; background: white; box-shadow: 0 12px 36px rgba(58,36,27,.06); font-family: Georgia, serif; font-size: 1.35rem; }
.signature { margin-top: 1.2rem; color: var(--wine); font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; }

.program-list { display: grid; gap: 16px; }
.program {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}
.program .age { display: grid; width: 64px; height: 64px; place-items: center; border-radius: 20px; color: white; background: var(--olive); font-weight: 900; text-align: center; line-height: 1.1; font-size: .78rem; }
.program p { margin-top: .7rem; color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: white; }
.team-card.featured { color: white; background: var(--wine); border-color: var(--wine); }
.team-card .role { margin-top: .5rem; color: var(--muted); font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.team-card.featured .role { color: rgba(255,255,255,.72); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.contact-details { display: grid; gap: 14px; }
.detail { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.detail small { display: block; color: var(--wine); font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.detail a { font-weight: 800; text-decoration-color: var(--gold); text-underline-offset: 4px; }

.contact-form { padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 850; }
.field input, .field textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid #cfc5bd;
  border-radius: 13px;
  color: var(--ink);
  background: #fffdf8;
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--wine); box-shadow: 0 0 0 4px rgba(124,31,45,.1); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: .87rem; }
.form-status { min-height: 1.5em; margin-top: .8rem; color: var(--olive); font-weight: 800; }

.cta-band { padding: 70px 0; }
.cta-box { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; padding: 52px; border-radius: 30px; color: white; background: var(--wine); box-shadow: var(--shadow); }
.cta-box p { margin-top: 1rem; color: rgba(255,255,255,.78); }
.cta-box .button { color: var(--wine-dark); background: var(--gold); border-color: var(--gold); }

.site-footer { padding: 64px 0 26px; color: rgba(255,255,255,.82); background: #241d1b; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; padding-bottom: 46px; }
.footer-brand { display: flex; align-items: center; gap: 16px; color: white; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 800; }
.footer-brand img { width: 74px; height: 88px; object-fit: contain; }
.site-footer h3 { margin-bottom: 1rem; color: white; font: 850 .83rem/1 Inter, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.site-footer p, .site-footer li { font-size: .93rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: .45rem; }
.site-footer a { text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 3px; }
.site-footer a:hover { color: white; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); font-size: .84rem; text-align: center; }
.footer-bottom a { color: #ffd67f; font-weight: 800; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; padding: 14px 18px 22px; border-bottom: 1px solid var(--line); background: var(--cream); box-shadow: 0 18px 30px rgba(58,36,27,.12); }
  .site-nav.open { display: grid; }
  .site-nav a { border-radius: 12px; }
  .hero-grid, .page-hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 34px; }
  .hero-art { min-height: 470px; }
  .page-hero-grid { gap: 36px; }
  .cards, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .nav-shell, .wrap { width: min(100% - 24px, 1180px); }
  .nav-shell { min-height: 74px; }
  .brand img { width: 44px; height: 54px; }
  .brand { font-size: .95rem; }
  .hero { padding-bottom: 60px; }
  h1 { font-size: clamp(2.9rem, 16vw, 4.25rem); }
  .hero-art { min-height: 390px; }
  .hero-photo { inset: 0 0 32px 28px; width: calc(100% - 28px); height: calc(100% - 32px); }
  .mascot-card { width: 118px; padding: 13px; border-radius: 20px; }
  .mascot-card img { height: 105px; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact + .fact { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 72px 0; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 1rem; }
  .cards, .team-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .gallery figure { grid-column: 1 / -1 !important; }
  .gallery img { height: 240px; }
  .page-hero { padding: 46px 0 50px; }
  .page-hero img { height: 320px; }
  .program { grid-template-columns: 1fr; }
  .cta-box { grid-template-columns: 1fr; padding: 34px 26px; }
  .contact-form { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}


/* CHRISTIAN AND HIRING UPDATE V7 */

.faith-banner {
  padding: 42px 0;
  background: #f1eddf;
}

.faith-banner-inner {
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: 40px;
  padding: 44px;
  border-radius: 28px;
  color: white;
  background: #53131e;
  box-shadow: 0 24px 70px rgba(72, 37, 28, 0.16);
}

.faith-banner-inner h2 {
  max-width: 780px;
}

.faith-banner-inner p {
  max-width: 800px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
}

.faith-banner-inner .eyebrow {
  color: #ffd67f;
}

.faith-banner-inner img {
  width: 140px;
  max-height: 160px;
  object-fit: contain;
}

.hiring-banner {
  padding: 24px 0 60px;
}

.hiring-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 42px;
  border: 2px solid #edae2b;
  border-radius: 26px;
  color: #251f1d;
  background: #fff3cc;
  box-shadow: 0 16px 40px rgba(72, 37, 28, 0.10);
}

.hiring-banner h2 {
  margin-top: 9px;
  color: #7c1f2d;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hiring-banner p {
  margin: 10px 0 0;
  color: #5f554f;
}

.hiring-label {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  color: white;
  background: #7c1f2d;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hiring-button {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .faith-banner-inner,
  .hiring-banner-inner {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .faith-banner-inner img {
    width: 100px;
  }

  .hiring-button {
    width: 100%;
  }
}

/* FULL CONTACT AND APPLICATION SYSTEM */

.application-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
  align-items: start;
}

.application-intro {
  position: sticky;
  top: 120px;
}

.application-intro > p {
  margin-top: 18px;
  color: var(--muted);
}

.application-note {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid #e3c262;
  border-radius: 18px;
  color: #5a4613;
  background: #fff3cc;
}

.application-form {
  position: relative;
}

.form-title {
  margin-bottom: 25px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.field select {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border: 1px solid #cfc5bd;
  border-radius: 13px;
  color: var(--ink);
  background: #fffdf8;
  outline: none;
}

.field select:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(124,31,45,.1);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (max-width: 900px) {
  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-intro {
    position: static;
  }
}


/* MOBILE LIVE FORM UPDATE V8 */

.contact-form,
.application-form {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.field input,
.field textarea,
.field select {
  max-width: 100%;
}

@media (max-width: 700px) {
  .contact-grid,
  .application-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .contact-form,
  .application-form {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .field,
  .field.full {
    grid-column: 1;
    min-width: 0;
  }

  .field input,
  .field textarea,
  .field select {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  .field textarea {
    min-height: 130px;
  }

  .field button {
    width: 100%;
  }

  .form-title {
    font-size: 2rem;
  }

  .application-intro {
    position: static;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero img {
    width: 100%;
    height: 280px;
  }

  .hiring-banner-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hiring-button {
    width: 100%;
  }
}
