:root {
  --bg: #f6f3ee;
  --band: #efece6;
  --card: #f1eee8;
  --ink: #161616;
  --muted: #6e6a64;
  --line: rgba(0,0,0,0.12);
  --accent: #c2703e;
  --serif: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-weight: 300; font-variant-numeric: lining-nums; margin: 0; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}
.small {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 22px;
  transition: opacity .2s;
}
.btn:hover { opacity: 0.8; }

/* Header */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 30px 0;
}
.logo { font-family: var(--serif); font-size: 26px; letter-spacing: 0.04em; font-variant-numeric: lining-nums; }
.menu { display: flex; gap: 34px; }
.menu a { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.06em; color: #3a3733; }
.menu a:hover { color: var(--ink); border-bottom: 1px solid var(--ink); }
.topbar .cta { text-align: right; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: stretch;
  padding: 30px 0 60px;
}
.hero-text { padding: 40px 0 20px; }
.hero h1 {
  font-size: clamp(96px, 12vw, 150px);
  line-height: 0.9;
  letter-spacing: 0.01em;
}
.hero .rule { width: 34px; height: 1px; background: var(--accent); margin: 34px 0 26px; }
.hero .tagline { font-size: 30px; line-height: 1.2; margin: 0 0 18px; }
.hero .small { max-width: 380px; }
.hero-art {
  position: relative;
  min-height: 420px;
  background: #e9e5de;
  overflow: hidden;
}
.hero-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Why row */
.why {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why > div { padding: 42px 34px 42px 0; }
.why > div + div { border-left: 1px solid var(--line); padding-left: 34px; text-align: center; }
.why .lead { font-size: 20px; line-height: 1.35; margin: 16px 0 0; max-width: 280px; }
.why .icon { width: 26px; height: 26px; margin: 0 auto 18px; stroke: var(--ink); fill: none; stroke-width: 1; display: block; }
.why .label { display: block; margin-bottom: 12px; }
.why .small { max-width: 220px; margin: 0 auto; }

/* Gatherings */
.gatherings { padding: 70px 0 60px; }
.gatherings .head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.gatherings .head a { color: var(--muted); }
.gatherings .head a:hover { color: var(--ink); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  display: grid;
  grid-template-columns: 128px 1fr;
  background: var(--card);
  border: 1px solid var(--line);
  min-height: 118px;
}
.card .photo { position: relative; background: #d9d4cb; overflow: hidden; }
.card .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.card .photo svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.card .info { padding: 20px 18px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.card .city { letter-spacing: 0.3em; }
.card .type { color: var(--accent); font-size: 8.5px; }
.card .date { font-family: var(--sans); font-size: 10px; color: var(--muted); display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.card:hover { background: #ece8e1; }

/* Membership strip */
.member {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  margin-bottom: 40px;
}
.member .quote { font-size: 22px; line-height: 1.3; margin: 0; }
.member .quote em { font-style: italic; }
.member .quote span { display: block; }

/* Footer */
.footer {
  text-align: center;
  padding: 50px 0 60px;
}
.footer .label { display: block; }
.footer .est { font-size: 9px; letter-spacing: 0.3em; margin-top: 12px; color: var(--muted); }
.footer .links { display: flex; justify-content: center; gap: 26px; margin-top: 30px; }
.footer .links a { font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; }
.footer .links a:hover { color: var(--ink); }

/* Interior pages */
.page { max-width: 640px; margin: 0 auto; padding: 50px 24px 120px; }
.page .kicker { justify-content: center; color: var(--muted); margin-bottom: 26px; }
.page .kicker::before { display: none; }
.page h1 { font-size: 56px; letter-spacing: 0.04em; text-align: center; margin-bottom: 18px; }
.page .dash { width: 22px; height: 1px; background: var(--accent); margin: 0 auto 56px; }
.page p { margin: 0 0 26px; font-size: 20px; }
.page .intro { text-align: center; font-size: 24px; line-height: 1.35; }
.page ol { list-style: none; padding: 0; margin: 20px 0 0; counter-reset: item; }
.page ol li { counter-increment: item; padding: 28px 0; border-top: 1px solid var(--line); }
.page ol li:last-child { border-bottom: 1px solid var(--line); }
.page ol li::before {
  content: "0" counter(item);
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  margin-bottom: 12px;
  color: var(--accent);
}
.page ol li strong { font-weight: 400; font-size: 22px; display: block; margin-bottom: 6px; }
.page .note { font-size: 16px; color: var(--muted); text-align: center; margin-top: 50px; }
.page .center { text-align: center; margin-top: 40px; }
.list { list-style: none; padding: 0; margin: 0; }
.list li { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); align-items: baseline; }
.list li:last-child { border-bottom: 1px solid var(--line); }
.list .where { font-size: 22px; }
.list .what { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.list .when { font-family: var(--sans); font-size: 11px; color: var(--muted); }

/* Form */
.form { margin-top: 30px; }
.form label { display: block; font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin: 22px 0 8px; }
.form input, .form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  background: transparent;
  font-family: var(--serif);
  font-size: 19px;
  padding: 8px 0;
  outline: none;
  color: var(--ink);
}
.form input:focus, .form textarea:focus { border-bottom-color: var(--ink); }
.form textarea { min-height: 90px; resize: vertical; }
.form .btn { margin-top: 34px; border: 0; cursor: pointer; }

@media (max-width: 900px) {
  .wrap { padding: 0 22px; }
  .topbar { grid-template-columns: 1fr auto; }
  .menu { display: none; }
  .hero { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .hero-art { min-height: 300px; }
  .why { grid-template-columns: 1fr 1fr; }
  .why > div, .why > div + div { padding: 30px 20px; border-left: 0; border-top: 1px solid var(--line); text-align: left; }
  .why > div:first-child, .why > div:nth-child(2) { border-top: 0; }
  .why .icon { margin-left: 0; }
  .why .small { margin: 0; }
  .cards { grid-template-columns: 1fr; }
  .member { grid-template-columns: 1fr; gap: 20px; }
  .page h1 { font-size: 44px; }
}
