:root {
  --ink: #081723;
  --ink-soft: #123044;
  --night: #06131c;
  --night-raised: #0c202d;
  --paper: #f8f5ec;
  --white: #fffdf7;
  --gold: #f6c85f;
  --gold-bright: #ffe19a;
  --sky: #b9dbe7;
  --muted: #63737d;
  --line: rgba(8, 23, 35, 0.14);
  --shell: min(1160px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: var(--white);
  background: rgba(6, 19, 28, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: block;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--gold-bright);
}

.nav-menu .nav-cta {
  padding: 10px 17px;
  color: var(--night);
  background: var(--gold);
  border-radius: 999px;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: var(--night);
  background: var(--gold-bright);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 16, 0.94) 0%, rgba(3, 11, 16, 0.82) 38%, rgba(3, 11, 16, 0.38) 68%, rgba(3, 11, 16, 0.55) 100%),
    linear-gradient(0deg, rgba(3, 11, 16, 0.62) 0%, transparent 48%);
}

.hero-cover {
  position: absolute;
  z-index: -4;
  inset: 0;
}

.hero-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 760px;
  height: 760px;
  top: -270px;
  right: -80px;
  background: radial-gradient(circle, rgba(246, 200, 95, 0.24) 0%, rgba(46, 98, 117, 0.18) 34%, transparent 69%);
  filter: blur(4px);
}

.hero-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to right, transparent, black 40%, black);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(44px, 7vw, 100px);
  padding-top: 156px;
  padding-bottom: 106px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: #9fc4d1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 12px;
  padding: 5px 10px;
  color: var(--night);
  background: var(--gold);
  border-radius: 999px;
  letter-spacing: 0.11em;
}

h1,
h2,
h3,
p,
blockquote {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 10vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

h1 i {
  display: block;
  margin: 0.18em 0 0.13em 0.55em;
  color: var(--gold);
  font-size: 0.38em;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-lead {
  max-width: 600px;
  margin: 38px 0 0;
  color: rgba(255, 253, 247, 0.76);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--night);
  background: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-bright);
}

.text-link {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
}

.verse-card {
  position: relative;
  padding: 32px;
  background: rgba(9, 29, 41, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px 28px 2px 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.verse-card::before {
  content: "";
  position: absolute;
  width: 46px;
  height: 3px;
  top: 0;
  left: 32px;
  background: var(--gold);
}

.verse-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9fc4d1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.verse-topline strong {
  color: var(--gold);
}

.verse-card blockquote {
  margin: 52px 0 48px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.25;
}

.verse-card > p {
  margin: 0;
  padding-top: 20px;
  color: rgba(255, 253, 247, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.section {
  padding-block: clamp(88px, 11vw, 152px);
}

.section-kicker {
  color: #3c7183;
}

.story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(48px, 9vw, 132px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.story-copy {
  padding-top: 45px;
  color: #455560;
  font-size: 1.08rem;
}

.story-copy p {
  margin: 0;
}

.story-copy p + p {
  margin-top: 22px;
}

.story-band {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: end;
  margin-top: clamp(72px, 10vw, 132px);
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.story-number {
  display: flex;
  align-items: end;
  gap: 22px;
}

.story-number strong {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(5.2rem, 10vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.story-number strong span {
  color: #d49b18;
  font-size: 0.55em;
}

.story-number p {
  max-width: 120px;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.story-statement {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.32;
}

.foundation {
  background: #dcebf0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr;
  column-gap: clamp(52px, 10vw, 150px);
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading > p:last-child {
  align-self: end;
  margin: 0 0 5px;
  color: #46606d;
  font-size: 1.06rem;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.commitment-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(8, 23, 35, 0.1);
  border-radius: 2px 28px 2px 2px;
}

.commitment-card.featured {
  color: var(--white);
  background: var(--ink-soft);
  transform: translateY(24px);
}

.card-number {
  color: #557887;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.featured .card-number {
  color: var(--gold);
}

.commitment-card h3 {
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.15;
}

.commitment-card p {
  margin: 0;
  color: #4b606a;
}

.commitment-card.featured p {
  color: rgba(255, 253, 247, 0.7);
}

.experience {
  background: var(--paper);
}

.experience-heading h2 {
  max-width: 720px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.experience-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid #d49b18;
  border-radius: 2px 2px 28px 2px;
  box-shadow: 0 18px 44px rgba(8, 23, 35, 0.06);
}

.experience-image {
  width: 100%;
  height: 230px;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
}

.experience-content {
  position: relative;
  z-index: 1;
  min-height: 306px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 30px 32px;
}

.experience-number {
  color: #557887;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.experience-content h3 {
  margin: auto 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.experience-content > p {
  margin: 0;
  color: #4b606a;
}

.experience-card-featured {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 16%, rgba(246, 200, 95, 0.25), transparent 34%),
    var(--ink-soft);
  border-color: rgba(8, 23, 35, 0.28);
}

.experience-card-featured::after {
  content: "";
  position: absolute;
  width: 145%;
  height: 42%;
  right: -22%;
  bottom: -20%;
  background: rgba(185, 219, 231, 0.12);
  border-radius: 50% 50% 0 0;
  transform: rotate(-5deg);
}

.experience-card-featured .experience-number {
  color: var(--gold);
}

.experience-card-featured .experience-content {
  min-height: 536px;
  padding: 34px;
}

.experience-card-featured .experience-content h3 {
  font-size: clamp(2.2rem, 3.8vw, 3.35rem);
}

.experience-card-featured .experience-content > p {
  color: rgba(255, 253, 247, 0.74);
}

.experience-card-featured .experience-callout {
  margin-top: 38px;
  padding-top: 20px;
  color: var(--gold-bright);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.3;
}

.encouragement {
  padding-block: clamp(80px, 9vw, 126px);
  color: var(--white);
  background: var(--ink-soft);
}

.encouragement-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(52px, 9vw, 128px);
  align-items: start;
}

.encouragement-heading h2 {
  max-width: 540px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.encouragement-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.encouragement-list p {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  margin: 0;
  padding: 24px 0;
  color: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.32;
}

.encouragement-list span {
  padding-top: 6px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.connect {
  color: var(--white);
  background: var(--night);
}

.connect-panel {
  display: grid;
  grid-template-columns: 1fr minmax(310px, 0.72fr);
  gap: clamp(52px, 10vw, 138px);
  align-items: center;
}

.section-kicker.light {
  color: var(--gold);
}

.connect-copy h2 {
  max-width: 610px;
}

.connect-copy > p:last-child {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 253, 247, 0.68);
  font-size: 1.1rem;
}

.details-card {
  padding: 34px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 2px 32px 2px 2px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.details-label {
  margin: 0 0 28px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(8, 23, 35, 0.2);
}

.detail-row span {
  font-size: 0.9rem;
}

.detail-row strong {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.email-row {
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}

.email-link {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.email-link:hover,
.email-link:focus-visible {
  text-decoration-thickness: 2px;
}

.gathering {
  padding-top: 24px;
  border-top: 1px solid rgba(8, 23, 35, 0.2);
}

.gathering-label {
  margin: 0 0 7px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gathering h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.1;
}

.gathering-time {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.gathering-time p {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

.gathering-time span {
  padding-top: 2px;
  color: rgba(8, 23, 35, 0.6);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gathering-time time {
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.site-footer {
  padding-block: 34px;
  color: rgba(255, 253, 247, 0.56);
  background: #030b10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  width: 44px;
  height: 44px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.78rem;
}

.footer-inner p:last-child {
  justify-self: end;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 11, 16, 0.93) 0%, rgba(3, 11, 16, 0.7) 70%, rgba(3, 11, 16, 0.68) 100%),
      linear-gradient(0deg, rgba(3, 11, 16, 0.8) 0%, transparent 58%);
  }

  .hero-cover img {
    object-position: 62% center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 154px;
    padding-bottom: 88px;
  }

  .verse-card {
    max-width: 520px;
  }

  .story-grid,
  .section-heading,
  .encouragement-inner,
  .connect-panel {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 680px;
    padding-top: 0;
  }

  .section-heading > p:last-child {
    max-width: 620px;
    margin-top: 24px;
  }

  .commitment-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .commitment-card {
    min-height: 270px;
  }

  .commitment-card.featured {
    transform: none;
  }

  .experience-card {
    min-height: 0;
  }

  .experience-image {
    height: clamp(260px, 48vw, 390px);
  }

  .experience-card-featured .experience-content {
    min-height: 390px;
  }

  .details-card {
    max-width: 600px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(6, 19, 28, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 4px;
  }

  .nav-menu .nav-cta {
    margin-top: 8px;
    padding: 12px 18px;
    text-align: center;
  }

  .hero-inner {
    padding-top: 132px;
    padding-bottom: 72px;
  }

  .hero-glow {
    width: 510px;
    height: 510px;
    top: -150px;
    right: -245px;
  }

  .hero-lines {
    background-size: 54px 54px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .verse-card {
    padding: 26px;
  }

  .story-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .story-number {
    align-items: center;
    gap: 16px;
  }

  .story-number strong {
    font-size: clamp(4.6rem, 22vw, 6rem);
  }

  .story-number p {
    max-width: 90px;
  }

  .story-statement {
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }

  .commitment-grid {
    margin-top: 48px;
  }

  .experience-grid {
    margin-top: 48px;
  }

  .commitment-card {
    min-height: 300px;
  }

  .experience-card {
    min-height: 0;
  }

  .experience-image {
    height: 240px;
  }

  .experience-content {
    min-height: 285px;
    padding: 26px 26px 30px;
  }

  .experience-card-featured .experience-content {
    min-height: 360px;
    padding: 30px 26px;
  }

  .encouragement-inner {
    gap: 48px;
  }

  .encouragement-list p {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .connect-panel {
    gap: 52px;
  }

  .details-card {
    padding: 28px 24px;
  }

  .detail-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner p:last-child {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
