
:root {
  --navy: #102a43;
  --navy-deep: #081b2b;
  --gold: #c89a3d;
  --paper: #fbfaf7;
  --cream: #f2eee7;
  --text: #1c2833;
  --muted: #64717d;
  --line: rgba(16, 42, 67, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 5vw;
  background: rgba(251,250,247,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 50%;
}
.brand-text {
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 600;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  text-decoration: none;
  font-size: .92rem;
}
.menu-toggle { display: none; }

.button {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--navy);
  color: white;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.button.small { padding: 10px 16px; }

.hero {
  width: min(1240px, 92vw);
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
.hero-visual {
  background: var(--cream);
  border-radius: 28px;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.eyebrow {
  margin: 0 0 14px;
  color: #9a6e1a;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 600;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  line-height: 1.03;
  margin-top: 0;
}
h1 {
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  font-weight: 500;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  margin-bottom: 22px;
}
h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.lead,
.statement p,
.story-text p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.text-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

.statement {
  width: min(960px, 88vw);
  margin: 0 auto;
  padding: 110px 0;
  text-align: center;
}
.statement p { max-width: 760px; margin: 0 auto; }

.support-grid {
  width: min(1240px, 92vw);
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.support-grid article {
  padding: 38px;
  border: 1px solid var(--line);
  background: white;
  min-height: 320px;
}
.number {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .14em;
}
.support-grid p,
.values p {
  color: var(--muted);
  line-height: 1.75;
}
.support-grid a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}

.story {
  width: min(1160px, 88vw);
  margin: 0 auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}
.story-mark {
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream);
}
.story-text blockquote {
  margin: 34px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1.42;
}

.values {
  background: var(--navy-deep);
  color: white;
  padding: 92px 6vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}
.values span {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .14em;
}
.values h3 {
  color: #f5ead3;
  margin-top: 18px;
}
.values p { color: #d5dfe7; }

.contact {
  width: min(1120px, 88vw);
  margin: 0 auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
form {
  display: grid;
  gap: 18px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
}
input, textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  font: inherit;
}
small { color: var(--muted); }

footer {
  padding: 34px 5vw;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: .88rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 50%;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 10px;
    padding: 9px 12px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 5vw;
    right: 5vw;
    padding: 22px;
    background: white;
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .hero,
  .story,
  .contact {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero { padding-top: 42px; }
  .support-grid,
  .values {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
  }
}
