:root {
  --ink: #15211b;
  --muted: #647067;
  --paper: #fffdf7;
  --surface: #ffffff;
  --line: #e7e3d8;
  --brand: #b85c27;
  --brand-dark: #713719;
  --accent: #f0b44d;
  --soft: #f8eddc;
  --green: #315f46;
  --radius: 24px;
  --shadow: 0 18px 45px rgba(43, 37, 25, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(231, 227, 216, 0.95);
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand-name {
  max-width: 430px;
  color: var(--brand-dark);
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--soft);
  color: var(--brand-dark);
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.c4eb08885c8 {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 24, 19, 0.88) 0%, rgba(22, 24, 19, 0.68) 48%, rgba(22, 24, 19, 0.20) 100%),
    url('../images/hero.jpg') center / cover no-repeat;
}

.c4eb08885c8::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 150px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.28));
}

.hero-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 95px 0;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c4eb08885c8 h1,
.page-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}

.c4eb08885c8 .c7def2c09b4 {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: #2e1b0f;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2,
h3 {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.section-heading p,
.prose p {
  color: var(--muted);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.program-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.program-card-content {
  padding: 26px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 36px 8px 36px 8px;
  box-shadow: var(--shadow);
}

.fact-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.fact {
  padding: 22px;
  border-left: 5px solid var(--accent);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.fact strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  padding: 26px;
  border-top: 5px solid var(--green);
  border-radius: 0 0 20px 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.page-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(19, 26, 21, 0.90), rgba(19, 26, 21, 0.35)),
    url('../images/about.jpg') center / cover no-repeat;
}

.page-hero-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 90px 0 64px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: start;
}

.info-card,
.policy-card,
.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.info-card + .info-card,
.policy-card + .policy-card {
  margin-top: 18px;
}

.info-card img {
  width: 100%;
  height: 300px;
  margin-bottom: 22px;
  object-fit: cover;
  border-radius: 16px;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.cd2e748efd6 {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d7d1c3;
  border-radius: 14px;
  background: #fffdf8;
  padding: 13px 14px;
  color: var(--ink);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(240, 180, 77, 0.28);
  border-color: var(--brand);
}

.map-embed {
  margin-top: 28px;
}

.map-embed iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #17251d;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-brand {
  color: #ffffff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
}

.site-footer a {
  color: #ffffff;
}

.footer-bottom {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.92rem;
}

.small {
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    left: 4%;
    right: 4%;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    margin: 0;
  }

  .c4eb08885c8 {
    min-height: 610px;
    background-position: 62% center;
  }

  .program-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 76px;
  }

  .brand-lockup img {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    max-width: 210px;
    font-size: 1rem;
  }

  .site-nav {
    top: 76px;
  }

  .c4eb08885c8 {
    min-height: 590px;
    background:
      linear-gradient(rgba(17, 23, 19, 0.76), rgba(17, 23, 19, 0.76)),
      url('../images/hero.jpg') center / cover no-repeat;
  }

  .hero-inner {
    padding: 72px 0;
  }

  .c4eb08885c8 h1,
  .page-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.5rem);
    line-height: 0.98;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .program-grid,
  .value-grid,
  .fact-panel,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-card img {
    height: 220px;
  }

  .split-image img {
    min-height: 330px;
  }

  .page-hero {
    min-height: 370px;
  }

  .page-hero-inner {
    padding: 70px 0 46px;
  }

  .contact-card,
  .info-card,
  .policy-card {
    padding: 22px;
  }

  .map-embed iframe {
    min-height: 320px;
  }
}
