:root {
  --blue: #06345f;
  --bright-blue: #0066cc;
  --gold: #b98724;
  --cream: #fbf7ef;
  --ink: #172331;
  --muted: #5f6f7e;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(6, 52, 95, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 6vw;
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(6, 52, 95, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
nav { display: flex; gap: 24px; flex-wrap: wrap; }
nav a {
  color: var(--blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}
nav a:hover { color: var(--gold); }

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 80px 6vw;
  background:
    radial-gradient(circle at top right, rgba(185, 135, 36, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, var(--cream) 60%, #eef5ff 100%);
}
.eyebrow, .section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 12px;
}
h1, h2, h3 { color: var(--blue); line-height: 1.1; margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 86px); margin-bottom: 12px; }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: 24px; margin-bottom: 8px; }
.subtitle { font-size: clamp(22px, 3vw, 34px); color: var(--gold); margin: 0 0 18px; }
.intro { font-size: 20px; max-width: 720px; color: var(--muted); }
.hero-logo { display: flex; justify-content: center; }
.hero-logo img {
  width: min(460px, 100%);
  border-radius: 50%;
  box-shadow: var(--shadow);
  background: var(--white);
}
.buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--blue);
}
.button.primary { background: var(--blue); color: var(--white); }
.button.secondary { color: var(--blue); background: transparent; }
.button:hover { transform: translateY(-1px); }

.section { padding: 80px 6vw; }
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.split p { font-size: 19px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 20px;
}
.pillars article, .card {
  background: var(--white);
  border: 1px solid rgba(6, 52, 95, 0.12);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 12px 32px rgba(6, 52, 95, 0.08);
}
.pillars span { font-size: 34px; display: block; margin-bottom: 12px; }
.pillars p, .card p, .card li { color: var(--muted); }
.membership { background: var(--blue); }
.large-card { max-width: 980px; margin: 0 auto; }
.large-card h2 { max-width: 780px; }
ul { padding-left: 20px; margin-bottom: 28px; }
.contact {
  text-align: center;
  background: var(--white);
}
.contact p { font-size: 19px; color: var(--muted); }
.email {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 30px);
  text-decoration-color: var(--gold);
}
.website { color: var(--gold) !important; font-weight: 700; }
footer {
  padding: 28px 6vw;
  text-align: center;
  background: var(--blue);
  color: var(--white);
}

@media (max-width: 900px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  nav { gap: 14px; }
  .brand span { font-size: 14px; }
  .pillars { grid-template-columns: 1fr; }
  .section { padding: 56px 6vw; }
  .hero { padding: 56px 6vw; }
}

form input, form select{width:100%;padding:12px;margin:8px 0;border:1px solid #ccc;border-radius:8px}
form button{border:none;cursor:pointer}

.hero .button, .hero a.button, .cta .button, .cta a.button { margin: 0.35rem; }
