:root {
  --jade: #5dbb3f;
  --jade-deep: #3f7835;
  --forest: #263d2c;
  --ink: #20231f;
  --body: #464c46;
  --ivory: #fbf9f3;
  --warm-white: #fffef9;
  --pale-jade: #f1f6ed;
  --line: rgba(63, 120, 53, 0.28);
  --container: min(1320px, calc(100% - 72px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
.container { width: var(--container); margin: 0 auto; }

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background-image: url("assets/hero.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Only the upper-left logo area receives a light veil. The rest of the photograph remains vivid. */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(670px, 52vw);
  height: 225px;
  pointer-events: none;
  background: radial-gradient(ellipse at 12% 9%, rgba(255, 252, 242, 0.98) 0%, rgba(255, 252, 242, 0.84) 38%, rgba(255, 252, 242, 0.22) 73%, transparent 100%);
}

/* A restrained local shadow supports the headline only, without washing out the image. */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  width: min(760px, 57vw);
  height: 430px;
  pointer-events: none;
  background: radial-gradient(ellipse at 24% 50%, rgba(22, 32, 23, 0.22), rgba(22, 32, 23, 0.07) 50%, transparent 74%);
}

.hero-logo {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: clamp(22px, 4vw, 68px);
  width: clamp(340px, 31vw, 500px);
  height: 170px;
  overflow: hidden;
}
.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: clamp(34px, 5vw, 82px);
  top: 30%;
  max-width: 760px;
}
.eyebrow,
.section-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--jade-deep);
}
.hero h1,
.organization h2,
.contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}
.hero h1 {
  margin: 22px 0 24px;
  color: #fffdf7;
  font-size: clamp(3.4rem, 5.5vw, 6rem);
  line-height: 1.02;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42), 0 1px 3px rgba(0, 0, 0, 0.35);
}
.hero-subtitle {
  margin: 0;
  color: #303831;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.8);
}
.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  color: var(--forest);
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 10px 32px rgba(0,0,0,.16);
}

.organization {
  padding: 145px 0 155px;
  background: var(--warm-white);
}
.organization-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(72px, 7vw, 120px);
  align-items: center;
}
.organization-visual { margin: 0; }
.organization-visual img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  box-shadow: 0 24px 65px rgba(31, 45, 34, 0.12);
}
.organization-copy h2,
.contact h2 {
  margin: 17px 0 18px;
  font-size: clamp(2.75rem, 4.3vw, 4.8rem);
  line-height: 1.03;
}
.ornament {
  width: 76px;
  height: 18px;
  margin: 22px 0 30px;
  position: relative;
}
.ornament::before,
.ornament::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 28px;
  height: 1px;
  background: var(--jade-deep);
}
.ornament::before { left: 0; }
.ornament::after { right: 0; }
.ornament span {
  position: absolute;
  left: 50%;
  top: 3px;
  width: 11px;
  height: 11px;
  transform: translateX(-50%) rotate(45deg);
  border: 1px solid var(--jade-deep);
}
.organization-copy p {
  margin: 0 0 22px;
  color: var(--body);
  font-size: 1.08rem;
  line-height: 1.82;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 108px;
  text-align: center;
  background: linear-gradient(110deg, #f7f6ef 0%, #f2f6ed 100%);
}
.contact::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -95px;
  width: 360px;
  height: 300px;
  opacity: .15;
  background: radial-gradient(ellipse at center, var(--jade) 0%, transparent 68%);
}
.contact-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.contact-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--jade-deep);
  border-radius: 50%;
  color: var(--jade-deep);
  font-size: 1.25rem;
}
.contact h2 { margin-top: 0; }
.ornament-centered { margin-left: auto; margin-right: auto; }
.contact p {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.7;
}
.email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  margin-top: 24px;
  padding: 15px 30px;
  border: 1px solid rgba(63, 120, 53, 0.58);
  color: var(--forest);
  background: rgba(255,255,255,.55);
  text-decoration: none;
  font-weight: 500;
}

footer {
  background: #fbfaf6;
  color: var(--ink);
  padding: 42px 0 22px;
  border-top: 1px solid rgba(44, 72, 49, .08);
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto;
  align-items: center;
  gap: 60px;
}
.footer-logo {
  width: 430px;
  height: 165px;
  overflow: hidden;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
address {
  min-width: 285px;
  font-style: normal;
  font-size: .94rem;
  line-height: 1.75;
}
.footer-bottom {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(44, 72, 49, .13);
  text-align: center;
  color: #687068;
  font-size: .78rem;
}

@media (max-width: 850px) {
  :root { --container: min(100% - 34px, 680px); }
  .hero { min-height: 760px; aspect-ratio: auto; background-size: cover; background-position: 64% center; }
  .hero::before { width: 100%; height: 175px; }
  .hero::after { top: 17%; width: 100%; height: 380px; }
  .hero-logo { top: 4px; left: 8px; width: min(390px, 87vw); height: 145px; }
  .hero-copy { top: 22%; left: 24px; right: 24px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-subtitle { color: #fffef8; text-shadow: 0 2px 12px rgba(0,0,0,.65); }
  .eyebrow { color: #e7f2df; text-shadow: 0 2px 10px rgba(0,0,0,.45); }
  .organization { padding: 78px 0 86px; }
  .organization-grid { grid-template-columns: 1fr; gap: 55px; }
  .organization-visual img { aspect-ratio: 1.15 / 1; }
  .contact { padding: 80px 20px 86px; }
  .email { min-width: 0; width: min(100%, 390px); }
  .footer-main { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 8px; }
  .footer-logo { width: min(390px, 92vw); height: 150px; }
  address { min-width: 0; }
}
