@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --paper: #fbf7ef;
  --ink: #121412;
  --muted: rgba(18, 20, 18, .68);

  --green: #102318;
  --gold: #b89b55;

  --border: rgba(16, 35, 24, .14);
  --shadow: 0 18px 50px rgba(0, 0, 0, .18);
  --radius: 10px;

  --max: 1120px;
}

* {
  box-sizing: border-box;
}

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


#top {
  position: absolute;
  top: 0;
  left: 0;
  scroll-margin-top: 90px;
  /* adjust to your header height */
}

#main-anchor {
  scroll-margin-top: 90px;
  /* adjust to header height */
}


body {
  margin: 0;
  background:
    radial-gradient(1100px 700px at 20% 0%, rgba(184, 155, 85, .12), transparent 60%),
    radial-gradient(900px 600px at 85% 5%, rgba(16, 35, 24, .16), transparent 55%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.65;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.narrow {
  max-width: 920px;
}

.small {
  font-size: .92rem;
}

.muted {
  color: var(--muted);
}

.lede {
  font-size: 1.08rem;
  color: rgba(18, 20, 18, .80);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: .95em;
  background: rgba(16, 35, 24, .06);
  border: 1px solid rgba(16, 35, 24, .10);
  padding: 2px 6px;
  border-radius: 8px;
}

/* Inline Maltese cross */
.maltese {
  fill: var(--gold);
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .18));
}

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(251, 247, 239, .90), rgba(251, 247, 239, .74));
  border-bottom: 1px solid var(--border);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex: 0 0 auto;
}

.brand-text {
  display: block;
}

.brand-title {
  line-height: 1.05;
}

.brand-subtitle {
  line-height: 1.05;
}


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

.brand-title {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: .2px;
  font-size: 1.12rem;
  display: block;
  line-height: 1.1;
}

.brand,
.brand:hover,
.brand:focus,
.brand:active {
  text-decoration: none;
  color: inherit;
}

.brand-subtitle {
  display: block;
  font-size: .88rem;
  color: rgba(18, 20, 18, .68);
  margin-top: 2px;
}

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

.nav-link {
  text-decoration: none;
  color: rgba(18, 20, 18, .80);
  padding: 9px 12px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}

.nav-link:hover {
  background: rgba(184, 155, 85, .12);
  color: rgba(18, 20, 18, .92);
}

.nav-link.is-active {
  background: rgba(16, 35, 24, .10);
  color: rgba(18, 20, 18, .92);
}

.nav-cta {
  border: 1px solid rgba(184, 155, 85, .48);
  background: linear-gradient(to bottom, rgba(184, 155, 85, .10), rgba(184, 155, 85, .06));
}

/* Burger */
.nav-toggle {
  display: none;
  border: 1px solid rgba(16, 35, 24, .18);
  background: rgba(255, 255, 255, .65);
  border-radius: 12px;
  padding: 10px 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(18, 20, 18, .78);
  margin: 4px 0;
  border-radius: 2px;
}

/* --- Hero --- */
.hero {
  min-height: calc(100svh - 64px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  transition: min-height .5s ease, padding .4s ease;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(.95) contrast(1.05);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(780px 520px at 30% 50%, rgba(0, 0, 0, .1), rgba(0, 0, 0, .7) 72%),
    linear-gradient(to bottom, rgba(16, 35, 24, .24), rgba(0, 0, 0, .74));
}

.hero-inner {
  position: relative;
  text-align: center;
  padding: 64px 0 84px;
  color: #fff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .20);
  background: rgba(16, 35, 24, .26);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .30);
  margin-bottom: 18px;
}

.maltese--hero {
  fill: rgba(255, 255, 255, .92);
  filter: none;
}

.hero-date {
  font-size: .92rem;
  letter-spacing: .35px;
  color: rgba(255, 255, 255, .86);
}

.hero-title {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.05;
  margin: 10px 0 8px;
  text-shadow: 0 24px 60px rgba(0, 0, 0, .65);
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

/* Chevron arrow */
.hero-arrow {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
  animation: floaty 2.2s ease-in-out infinite;
}

.chevron {
  width: 16px;
  height: 16px;
  border-right: 3px solid rgba(255, 255, 255, .78);
  border-bottom: 3px solid rgba(255, 255, 255, .78);
  transform: rotate(45deg);
  margin-top: -4px;
  opacity: .86;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* First-visit shrink state (keep as compact banner) */
body.hero-shrunk .hero {
  min-height: 38svh;
}

body.hero-shrunk .hero-inner {
  padding: 34px 0 48px;
}

body.hero-shrunk .hero-arrow {
  display: none;
}

/* Later visits: skip hero entirely */
body.hero-skip .hero {
  display: none;
}



/* --- Sections / Typography --- */
.section {
  padding: 44px 0;
}

/* slightly tighter */
.page-head {
  margin-bottom: 30px;
}

.page-head h2 {
  margin-top: 6px;
}

p {
  margin: 0.85rem 0;
}

.lede {
  margin-top: 0.75rem;
}

h3 {
  margin-top: 34px;
}

/* clearer section breaks */
.rule {
  margin: 22px 0;
}

h1,
h2,
h3 {
  font-family: "EB Garamond", Georgia, serif;
  letter-spacing: .2px;
  margin: 30px 0 12px;
  line-height: 1.15;
}

h2 {
  font-size: 2.0rem;
}

h3 {
  font-size: 1.45rem;
}

/* --- Links --- */

a {
  color: #7a1e1e;
  /* deep ecclesiastical red */
  text-decoration: none;
  /* no underline */
  transition: color .15s ease;
}


a:hover {
  color: #a32626;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}


a:active {
  color: #5e1515;
}

.muted a {
  color: rgba(18, 20, 18, .60);
}

.muted a:hover {
  color: #7a1e1e;
}

.page-head {
  margin-bottom: 40px;
}

.facts {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 1rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.facts i {
  font-size: 0.9rem;
  color: #b38b2e;
  background: rgba(179, 139, 46, 0.12);
  border-radius: 50%;
  padding: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facts li {
  align-items: center;
}

.facts i {
  flex: 0 0 30px;
}


.video-embed {
  margin: 2.5rem 0;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-embed {
  margin: 2rem 0 1.75rem;
  border-radius: 10px;
  border: 1px solid rgba(16, 35, 24, .12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .10);
}


.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

blockquote {
  margin: 0;
  padding: 16px 18px;
  font-family: 'Times New Roman', Times, serif;
}

blockquote em {
  font-style: italic;
}

cite {
  margin-top: 10px;
  font-size: .9rem;
  color: rgba(18, 20, 18, .58);
}


cite {
  text-align: right;
  display: block;
  margin-top: 6px;
  font-size: .92rem;
  color: rgba(18, 20, 18, .60);
}

.rule {
  height: 1px;
  background: rgba(16, 35, 24, .14);
  margin: 18px 0;
}

.soft-rule {
  border: 0;
  height: 1px;
  background: rgba(16, 35, 24, .12);
  margin: 34px 0 26px;
}

/* --- Feature layout: big image + text --- */
.feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 26px;
  align-items: start;
}

.feature-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(16, 35, 24, .12);
}

.feature-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-media figcaption {
  padding: 12px 14px 14px;
  font-size: .92rem;
  color: rgba(18, 20, 18, .70);
  background: rgba(255, 255, 255, .62);
  border-top: 1px solid rgba(16, 35, 24, .10);
}

.feature-body {
  padding-top: 6px;
}

.bullets {
  padding-left: 18px;
  margin: 12px 0 0;
}

.bullets li {
  margin: 7px 0;
}

.plain {
  padding: 1.5rem;
  background: #f8f7f4;
  border-radius: 8px;
  border-color: rgba(16, 35, 24, .10);
  border-width: 1px;
  border-style: solid;
}

.plain p {
  margin: 0.75rem 0;
}


.plain p:last-of-type {
  margin-bottom: 0;
}


.plain h3 {
  margin-top: 0;
}

.centered-image {
  margin: 2.5rem auto;
  text-align: center;
  max-width: 800px;
}

.centered-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.centered-image figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}


.wa-cta {
  margin: 1.75rem 0 1.5rem;
  text-align: center;
}

.wa-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.3rem;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: #1f3b2f;
  /* deep muted green */
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.wa-button:hover {
  background: #29533f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none !important;
}


/* Buttons */
.cta-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 18px 0 6px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(18, 20, 18, .92);
  border: 1px solid rgba(16, 35, 24, .18);
  background: rgba(255, 255, 255, .72);
  transition: transform .12s ease, background .12s ease;
  font-weight: 600;
}

.button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .90);
}

.button.ghost {
  background: transparent;
  border: 1px solid rgba(184, 155, 85, .55);
}

/* Plain note section */
.plain p {
  margin: 0;
}

/* --- Footer --- */
.site-footer {
  padding: 26px 0 38px;
  border-top: 1px solid rgba(16, 35, 24, .12);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Round back-to-top button */
.back-top {
  text-decoration: none;
  display: inline-flex;
}

.back-top,
.back-top:hover,
.back-top:focus {
  text-decoration: none !important;
}

.back-top-inner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(184, 150, 77, .6);
  background: rgba(184, 150, 77, .12);

  transition: all .2s ease;
}

.back-top-inner i {
  font-size: .85rem;
  opacity: .85;
}

.back-top-inner:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, .08);
}


/* --- Responsive --- */
@media (max-width: 980px) {
  .feature {
    grid-template-columns: 1fr;
  }

  .feature-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .brand {
    padding-left: 6px;
  }

  .nav-toggle {
    display: inline-block;
    margin-right: 6px;
  }

  .nav {
    position: absolute;
    right: 22px;
    top: 66px;
    width: min(420px, calc(100vw - 44px));
    background: rgba(251, 247, 239, .94);
    border: 1px solid rgba(16, 35, 24, .16);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

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

  .nav-link {
    padding: 10px 12px;
  }
}