:root {
  --cream: #fbf6ec;
  --ivory: #fffaf1;
  --gold: #c4a35a;
  --gold-deep: #9c7b32;
  --terracotta: #b85c38;
  --brown: #3f2e22;
  --brown-soft: #5c4333;
  --muted: #7a6554;
  --card: #fffdf8;
  --shadow: 0 18px 40px rgba(92, 64, 51, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.7;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(196, 163, 90, 0.14), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(184, 92, 56, 0.08), transparent 26%);
}

img { max-width: 100%; display: block; }
a { color: var(--terracotta); }
a:hover { color: var(--gold-deep); }

.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; background: #fff; padding: 8px 12px; z-index: 20; }

.site-top {
  text-align: center;
  padding: 2.2rem 1.25rem 1.2rem;
}
.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-deep);
  margin: 0 0 0.4rem;
}
.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
  line-height: 1.15;
}
.tagline {
  font-style: italic;
  color: var(--brown-soft);
  margin: 0.45rem 0 0;
  font-size: 1.15rem;
}

.nav-wrap {
  display: flex;
  justify-content: center;
  padding: 0 1rem 1.5rem;
}
.nav-toggle {
  display: none;
  background: var(--terracotta);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font: inherit;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  justify-content: center;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 999px;
  padding: 0.4rem;
  box-shadow: var(--shadow);
}
.nav a {
  color: var(--brown-soft);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--terracotta);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: end start;
  margin: 0 1rem 2.5rem;
  border-radius: 28px;
  overflow: hidden;
  background: #3f2e22 center/cover no-repeat;
  box-shadow: var(--shadow);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(63,46,34,0.15) 0%, rgba(63,46,34,0.72) 78%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 6vw, 4.5rem);
  color: #fffaf1;
  max-width: 42rem;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 600;
  line-height: 0.95;
  margin: 0 0 0.8rem;
}
.hero p { font-size: 1.15rem; margin: 0 0 1.4rem; max-width: 36rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 800;
  border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--brown); }
.btn-primary:hover { background: #d4b56c; color: var(--brown); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,250,241,0.7); }
.btn-ghost:hover { background: #fffaf1; color: var(--brown); }
.btn-solid { background: var(--terracotta); color: #fff; }
.btn-solid:hover { color: #fff; background: #9c4a2c; }
button.btn { cursor: pointer; font: inherit; }

.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 1.5rem 0 3rem; }
.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.4rem;
}
.lede { color: var(--muted); margin: 0 0 1.6rem; font-size: 1.08rem; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.photo-card {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.photo-card img { height: 160px; object-fit: cover; width: 100%; }
.photo-card .pad { padding: 1.05rem 1.15rem 1.25rem; }
.photo-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 0.35rem;
  font-size: 1.55rem;
}
.photo-card p { margin: 0; color: var(--muted); }

.table-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: stretch;
}
.table-card, .place-card {
  background: var(--card);
  border-radius: 24px;
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow);
}
.times { list-style: none; padding: 0; margin: 0; }
.times li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(196,163,90,0.5);
}
.times strong { font-weight: 800; }
.place-card address { font-style: normal; font-size: 1.15rem; }

.invite {
  margin: 1.5rem 0 0;
  background: linear-gradient(135deg, #f3e2c7, #f7efe0);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
}
.page-hero {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  place-items: end start;
  background: #5c4333 center/cover no-repeat;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(63,46,34,0.1), rgba(63,46,34,0.72));
}
.page-hero h1 {
  position: relative; z-index: 1;
  color: #fffaf1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0;
  padding: 2rem;
}

.prose-cards { display: grid; gap: 1.1rem; }
.prose-card {
  background: var(--card);
  border-radius: 22px;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}
.prose-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin-top: 0;
}
.belief-grid { display: grid; gap: 1.2rem; }
.belief {
  background: var(--card);
  border-radius: 22px;
  padding: 1.4rem 1.5rem 0.4rem;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--gold);
}
.belief h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 0.4rem;
}
.verse {
  background: #f7f0e2;
  border-left: 4px solid var(--gold);
  padding: 0.85rem 1rem;
  margin: 0 0 1rem;
  border-radius: 0 12px 12px 0;
}
.verse p { margin: 0 0 0.35rem; }
.verse cite { color: var(--gold-deep); font-style: normal; font-weight: 800; font-size: 0.92rem; }

.people { display: grid; gap: 1.1rem; }
.person {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  background: var(--card);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.avatar {
  width: 88px; height: 88px; border-radius: 50%;
  display: grid; place-items: center;
  background: #f3e2c7;
  color: var(--terracotta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.person h2 { margin: 0 0 0.2rem; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.7rem; }
.person p { margin: 0 0 0.6rem; }
.contact-line { font-size: 0.95rem; }

.lesson-list { display: grid; gap: 1rem; }
.lesson {
  background: var(--card);
  border-radius: 20px;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}
.lesson h2 { margin: 0 0 0.4rem; font-family: "Cormorant Garamond", Georgia, serif; }
.muted { color: var(--muted); }

.yt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin: 1rem 0 0;
}
.yt-item { display: grid; gap: 0.4rem; }
.yt-item h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
}
.yt-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}
.yt-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 700px) {
  .yt-grid { grid-template-columns: 1fr 1fr; }
}

.form {
  background: var(--card);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
label { display: block; font-weight: 800; margin: 0.7rem 0 0.25rem; }
input, textarea, select {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid #e2d3bb;
  border-radius: 12px;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.thanks {
  background: #eef6ea;
  border: 1px solid #b7d3b0;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  color: #2f5a3c;
}

.expect { display: grid; gap: 0.9rem; }
.expect article {
  background: var(--card);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}
.expect h3 { margin: 0 0 0.4rem; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.45rem; }

.footer {
  margin-top: 2rem;
  background: #3f2e22;
  color: #f7f1e3;
  padding: 2.4rem 1rem 2rem;
}
.footer a { color: #f0d48a; }
.footer-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.4rem;
}
.footer h2, .footer h3 { font-family: "Cormorant Garamond", Georgia, serif; margin: 0 0 0.5rem; }
.footer p, .footer li { color: #e8dcc8; }
.chooser-link { margin-top: 1.4rem; text-align: center; font-size: 0.95rem; }
.note { font-size: 0.95rem; color: var(--muted); }

@media (max-width: 980px) {
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .table-block, .footer-grid, .person { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav { display: none; flex-direction: column; width: 100%; border-radius: 18px; }
  .nav.is-open { display: flex; }
  .photo-grid { grid-template-columns: 1fr; }
  .hero { min-height: 62vh; }
}
