:root {
  --slate: #617180;
  --midnight: #17232b;
  --ink: #202527;
  --ivory: #f4f0e8;
  --paper: #fbf9f4;
  --orchard: #485a42;
  --amber: #d8a148;
  --clay: #a86648;
  --line: rgba(32, 37, 39, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Segoe UI", "Aptos", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-is-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: #fff;
  color: var(--midnight);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 38px;
  padding: 8px 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: var(--amber);
  color: var(--midnight);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.announcement a { margin-left: 16px; border-bottom: 1px solid currentColor; }
.announcement-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 38px;
  width: 100%;
  height: 92px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.brand { display: flex; align-items: center; gap: 12px; width: max-content; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 21px; letter-spacing: -.04em; }
.brand small { margin-top: 5px; font-size: 8px; letter-spacing: .32em; }
.desktop-nav, .desktop-nav .nav-list { display: flex; align-items: center; gap: clamp(22px, 2.3vw, 38px); }
.nav-list { margin: 0; padding: 0; list-style: none; }
.desktop-nav a { font-size: 12px; font-weight: 600; letter-spacing: .04em; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--amber); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta { justify-self: end; padding: 11px 0; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.75); }
.menu-toggle, .mobile-nav { display: none; }
.custom-logo-link { display: block; line-height: 0; }
.brand .custom-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: contain; }

.home-loader { position: fixed; z-index: 99999; inset: 0; display: grid; place-items: center; padding: 24px; background: var(--midnight); color: #fff; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .45s ease, visibility .45s ease; }
.awaken-home-loading, .awaken-home-loading body { overflow: hidden; }
.awaken-home-loading .home-loader { opacity: 1; visibility: visible; pointer-events: auto; }
.home-loader.is-leaving { opacity: 0; visibility: hidden; }
.home-loader__content { width: min(360px, 86vw); display: grid; justify-items: center; text-align: center; }
.home-loader__content > img { width: 78px; height: 78px; border-radius: 50%; object-fit: contain; }
.home-loader__content p { margin: 22px 0 20px; display: grid; line-height: 1; }
.home-loader__content strong { font-family: Georgia, serif; font-size: clamp(36px, 7vw, 54px); font-weight: 400; letter-spacing: -.045em; }
.home-loader__content p span { margin-top: 8px; color: var(--amber); font-size: 9px; font-weight: 800; letter-spacing: .42em; text-transform: uppercase; }
.home-loader__line { width: 100%; height: 1px; overflow: hidden; background: rgba(255,255,255,.18); }
.home-loader__line span { display: block; width: 45%; height: 100%; background: var(--amber); animation: awaken-loader-line 1.1s ease-in-out infinite; }
.home-loader__content small { margin-top: 18px; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
@keyframes awaken-loader-line { 0% { transform: translateX(-105%); } 55%, 100% { transform: translateX(225%); } }

.hero {
  position: relative;
  min-height: 890px;
  height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--midnight);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,18,23,.86) 0%, rgba(12,20,25,.5) 45%, rgba(12,20,25,.14) 74%), linear-gradient(0deg, rgba(10,18,23,.55), transparent 50%); }
.hero-content { position: absolute; z-index: 2; left: 8vw; bottom: 14vh; max-width: 760px; }
.eyebrow { margin: 0 0 26px; color: var(--slate); font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.light { color: rgba(255,255,255,.8); }
.hero h1, .message-feature h2, .final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7.1vw, 118px);
  line-height: .86;
  letter-spacing: -.065em;
  font-weight: 400;
}
em { color: var(--amber); font-weight: 400; }
.hero-copy { max-width: 560px; margin: 34px 0 0; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.3vw, 20px); line-height: 1.6; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 42px; padding: 0 23px; border: 0; cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-gold { background: var(--amber); color: var(--midnight); }
.button-gold:hover { background: #ebbd6f; }
.button-dark { background: var(--midnight); color: #fff; }
.button-dark:hover { background: var(--slate); }
.text-link { display: inline-flex; gap: 14px; align-items: center; padding: 11px 0; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; border-bottom: 1px solid currentColor; }
.light-link { color: #fff; }
.hero-service-card { position: absolute; z-index: 3; right: 4vw; bottom: 5vh; width: 300px; padding: 27px 30px; background: rgba(244,240,232,.94); color: var(--ink); backdrop-filter: blur(12px); }
.hero-service-card p { margin: 0 0 12px; color: var(--slate); font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero-service-card strong { display: block; font-family: Georgia, serif; font-size: 23px; font-weight: 400; }
.hero-service-card > span { display: block; margin: 10px 0 19px; color: #687075; font-size: 12px; line-height: 1.5; }
.hero-service-card a { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-index { position: absolute; z-index: 2; left: 4vw; bottom: 5vh; display: flex; align-items: center; gap: 10px; font-size: 9px; letter-spacing: .18em; }
.hero-index span { width: 62px; height: 1px; background: rgba(255,255,255,.5); }

.belief-strip { padding: 110px 8vw 88px; background: var(--paper); }
.section-number { margin: 0 0 52px; color: var(--slate); font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.belief-statement { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(240px, .6fr); align-items: end; gap: 8vw; }
.belief-statement h2, .welcome h2, .journey h2, .visit h2, .connect h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(42px, 5.2vw, 78px); line-height: 1.02; letter-spacing: -.05em; font-weight: 400; }
.belief-statement p { margin: 0 0 5px; color: #5f6667; font-size: 15px; line-height: 1.8; }
.belief-values { margin-top: 76px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.belief-values span { padding: 22px 0; font-family: Georgia, serif; font-size: 16px; }
.belief-values span + span { padding-left: 30px; border-left: 1px solid var(--line); }
.belief-values b { margin-right: 15px; color: var(--amber); font-family: "Segoe UI", sans-serif; font-size: 9px; letter-spacing: .1em; }

.section-pad { padding: 130px 8vw; }
.welcome { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .8fr); gap: 9vw; align-items: center; }
.welcome-media { position: relative; min-height: 700px; }
.welcome-media::before { content: ""; position: absolute; z-index: -1; left: -24px; bottom: -24px; width: 54%; height: 58%; background: var(--slate); }
.welcome-media > img { width: 100%; height: 700px; object-fit: cover; }
.media-caption { position: absolute; right: -34px; bottom: 36px; width: 190px; padding: 25px; background: var(--amber); color: var(--midnight); }
.media-caption span { display: block; font-family: Georgia, serif; font-size: 22px; }
.media-caption small { display: block; margin-top: 8px; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.welcome-copy .lead { margin: 30px 0 37px; color: #606766; font-size: 17px; line-height: 1.8; }
.expect-list { margin-bottom: 37px; border-top: 1px solid var(--line); }
.expect-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.expect-list span { color: var(--amber); font-size: 9px; font-weight: 800; }
.expect-list p { margin: 0; color: #676d6c; font-size: 12px; line-height: 1.6; }
.expect-list strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 13px; }

.message-feature { position: relative; min-height: 810px; overflow: hidden; color: #fff; }
.message-feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.message-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,27,32,.9), rgba(16,27,32,.25) 70%), linear-gradient(0deg, rgba(16,27,32,.5), transparent); }
.message-content { position: absolute; z-index: 2; left: 8vw; top: 50%; max-width: 690px; transform: translateY(-50%); }
.message-content h2 { font-size: clamp(54px, 6vw, 94px); }
.message-content > p { max-width: 530px; margin: 28px 0 34px; color: rgba(255,255,255,.78); line-height: 1.7; }
.message-actions { display: flex; gap: 23px; align-items: center; }
.round-play { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; transition: background .25s ease, color .25s ease; }
.round-play:hover { background: var(--amber); color: var(--midnight); border-color: var(--amber); }
.round-play span { margin-left: 3px; font-size: 13px; }
.message-verse { position: absolute; z-index: 2; right: 4vw; bottom: 5vh; width: 290px; padding: 24px 28px; border-left: 1px solid var(--amber); background: rgba(16,27,32,.55); backdrop-filter: blur(10px); }
.message-verse small { display: block; margin-bottom: 9px; color: var(--amber); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.message-verse span { font-family: Georgia, serif; font-size: 16px; line-height: 1.5; }

.journey { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1.5fr .55fr; gap: 8vw; align-items: end; }
.section-heading .section-number { margin-bottom: 25px; }
.section-heading > p { margin: 0 0 6px; color: #626968; font-size: 14px; line-height: 1.8; }
.journey-grid { margin-top: 75px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5vw; }
.journey-card { border-top: 1px solid var(--line); padding-top: 16px; }
.journey-image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--slate); }
.journey-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.journey-card:hover .journey-image img { transform: scale(1.035); }
.journey-image > span { position: absolute; right: 0; bottom: 0; width: 46px; height: 46px; display: grid; place-items: center; background: var(--ivory); font-size: 9px; font-weight: 800; }
.journey-card .eyebrow { margin: 25px 0 13px; }
.journey-card h3 { margin: 0; font-family: Georgia, serif; font-size: 28px; font-weight: 400; letter-spacing: -.03em; }
.journey-card > p:not(.eyebrow) { min-height: 65px; margin: 14px 0 18px; color: #656c6b; font-size: 13px; line-height: 1.7; }
.journey-card > a { display: flex; justify-content: space-between; padding: 13px 0; border-top: 1px solid var(--line); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.events-section { background: var(--ivory); }
.events-grid { margin-top: 72px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.event-card { display: grid; grid-template-columns: 112px minmax(0, 1fr) 48px; gap: 34px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.event-card time { min-height: 92px; display: grid; place-content: center; text-align: center; background: var(--midnight); color: #fff; }
.event-card time strong { font-family: Georgia, serif; font-size: 38px; font-weight: 400; line-height: 1; }
.event-card time span { margin-top: 6px; color: var(--amber); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.event-card .eyebrow { margin-bottom: 8px; }
.event-card h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(25px, 2.3vw, 36px); font-weight: 400; letter-spacing: -.025em; }
.event-card p:not(.eyebrow) { margin: 8px 0 0; color: #656c6b; font-size: 13px; line-height: 1.6; }
.event-card > a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 16px; transition: background .2s ease, color .2s ease; }
.event-card > a:hover, .event-card > a:focus-visible { background: var(--amber); color: var(--midnight); }

.visit { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 850px; background: var(--orchard); color: #fff; }
.visit-image-wrap { position: relative; min-height: 850px; }
.visit-aerial { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.visit-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, rgba(72,90,66,.3)); }
.visit-entry { position: absolute; z-index: 2; right: -62px; bottom: 62px; width: 240px; height: auto; aspect-ratio: 640 / 473; object-fit: cover; border: 8px solid var(--ivory); box-shadow: 0 20px 60px rgba(18,27,20,.28); }
.visit-badge { position: absolute; z-index: 3; left: 42px; top: 42px; width: 130px; height: 130px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--amber); color: var(--midnight); transform: rotate(-7deg); }
.visit-badge span { font-family: Georgia, serif; font-style: italic; font-size: 18px; }
.visit-badge strong, .visit-badge small { font-size: 9px; letter-spacing: .15em; }
.visit-copy { padding: 130px 8vw 100px 10vw; display: flex; flex-direction: column; justify-content: center; }
.visit-copy .eyebrow { color: rgba(255,255,255,.65); }
.visit-copy > p:not(.eyebrow) { margin: 30px 0; color: rgba(255,255,255,.73); line-height: 1.75; }
.visit-details { margin: 0 0 38px; border-top: 1px solid rgba(255,255,255,.2); }
.visit-details > div { display: grid; grid-template-columns: 80px 1fr; gap: 30px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.visit-details dt { padding-top: 3px; color: var(--amber); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.visit-details dd { margin: 0; font-family: Georgia, serif; font-size: 19px; }
.visit-details small { color: rgba(255,255,255,.6); font-family: "Segoe UI", sans-serif; font-size: 11px; }
.visit-copy .button { align-self: flex-start; }

.connect { display: grid; grid-template-columns: .75fr 1.25fr; gap: 10vw; background: var(--ivory); }
.connect-intro > p:not(.section-number) { margin: 28px 0; max-width: 450px; color: #646b69; line-height: 1.75; }
.connect-note { margin-top: 62px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.connect-note span { display: block; font-family: Georgia, serif; font-size: 19px; }
.connect-note small { display: block; margin-top: 5px; color: #6b716f; }
.connect-form { padding: 50px; background: var(--paper); border: 1px solid rgba(32,37,39,.1); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.connect-form label { display: grid; gap: 9px; margin-bottom: 22px; color: var(--slate); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.connect-form input, .connect-form select, .connect-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid #a6aaa5; border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 14px; letter-spacing: normal; text-transform: none; }
.connect-form textarea { resize: vertical; }
.connect-form input:focus, .connect-form select:focus, .connect-form textarea:focus { border-color: var(--amber); box-shadow: 0 1px 0 var(--amber); }
.check { grid-template-columns: 18px 1fr !important; align-items: start; gap: 10px !important; color: #656c69 !important; font-size: 10px !important; font-weight: 500 !important; letter-spacing: normal !important; line-height: 1.5; text-transform: none !important; }
.check input { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--orchard); }
.connect-form .button { margin-top: 8px; }
.form-disclaimer { display: block; margin-top: 16px; color: #7a807d; font-size: 10px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-alert { margin-bottom: 24px; padding: 14px 16px; border-left: 3px solid var(--clay); background: rgba(168,102,72,.09); color: #623f31; font-size: 13px; line-height: 1.55; }
.check a { text-decoration: underline; text-underline-offset: 3px; }
.form-success { min-height: 520px; padding: 60px; display: grid; align-content: center; justify-items: start; background: var(--paper); border: 1px solid rgba(32,37,39,.1); }
.form-success > span { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 50%; background: var(--orchard); color: #fff; }
.form-success h3 { margin: 25px 0 10px; font-family: Georgia, serif; font-size: 34px; font-weight: 400; }
.form-success p { max-width: 480px; color: #626866; line-height: 1.7; }
.form-success button { margin-top: 20px; padding: 0 0 8px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; text-transform: uppercase; }

.final-cta { position: relative; height: 600px; display: grid; place-items: center; overflow: hidden; color: #fff; text-align: center; }
.final-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-overlay { position: absolute; inset: 0; background: rgba(18,29,35,.62); }
.final-cta > div:last-child { position: relative; z-index: 2; }
.final-cta h2 { margin-bottom: 35px; font-size: clamp(70px, 9vw, 130px); }

footer { padding: 72px 5vw 22px; background: var(--midnight); color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 28px; }
.footer-brand img { width: 110px; height: 110px; border-radius: 50%; object-fit: contain; }
.footer-brand p { font-family: Georgia, serif; font-size: 22px; line-height: 1.4; }
.footer-links { margin: 58px 0 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8vw; padding-top: 35px; border-top: 1px solid rgba(255,255,255,.15); }
.footer-links > div { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 8px; color: var(--amber); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.footer-links a, .footer-links span { width: max-content; color: rgba(255,255,255,.66); font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }

.footer-menu, .footer-menu .nav-list { display: grid; align-content: start; gap: 10px; }
.footer-menu a { color: rgba(255,255,255,.66); font-size: 12px; }
.footer-menu a:hover { color: #fff; }
.footer-links nav .nav-list { display: grid; gap: 10px; }
.footer-links nav li { margin: 0; }

/* Standard WordPress pages and posts. */
.site-header.site-header--inner { position: relative; top: auto; background: var(--midnight); }
.inner-hero { position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; background: var(--midnight); color: #fff; }
.inner-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inner-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,18,23,.9), rgba(9,18,23,.28)), linear-gradient(0deg, rgba(9,18,23,.62), transparent 70%); }
.inner-hero-content { position: relative; z-index: 2; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 190px 0 82px; }
.inner-hero-content .eyebrow { margin-bottom: 18px; }
.inner-hero-content h1 { max-width: 940px; margin: 0; font-family: Georgia, serif; font-size: clamp(52px, 7vw, 96px); font-weight: 400; line-height: .98; letter-spacing: -.055em; }
.archive-description { max-width: 680px; margin-top: 24px; color: rgba(255,255,255,.76); line-height: 1.7; }
.content-shell { width: min(1180px, calc(100% - 40px)); min-height: 60vh; margin: 0 auto; padding: 110px 0; }
.content-shell.narrow { width: min(780px, calc(100% - 40px)); }
.page-header { margin-bottom: 54px; }
.page-header .eyebrow { margin-bottom: 18px; }
.page-title, .entry-title { margin: 0; font-family: Georgia, serif; font-size: clamp(44px, 6vw, 82px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.entry-title a:hover { color: var(--clay); }
.entry-meta { margin: 18px 0 0; color: var(--slate); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.entry-content { margin-top: 42px; font-size: 17px; line-height: 1.8; }
.entry-content > * { max-width: 760px; }
.entry-content > .alignwide { max-width: 1180px; margin-left: 50%; transform: translateX(-50%); width: min(1180px, calc(100vw - 40px)); }
.entry-content > .alignfull { max-width: none; margin-left: calc(50% - 50vw); width: 100vw; }
.entry-content a { color: var(--orchard); text-decoration: underline; text-decoration-color: var(--amber); text-underline-offset: 3px; }
.entry-content img { height: auto; }
.post-thumbnail { margin: 38px 0; }
.post-thumbnail img { width: 100%; height: auto; }
.entry-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.entry-card { padding: 28px; background: var(--paper); border: 1px solid var(--line); }
.entry-card .entry-title { font-size: clamp(30px, 3vw, 46px); }
.entry-card .entry-summary { color: #626866; line-height: 1.7; }
.entry-card .text-link { margin-top: 12px; }
.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.content-card { overflow: hidden; background: var(--paper); border: 1px solid var(--line); }
.content-card-image { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--slate); }
.content-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.content-card:hover .content-card-image img { transform: scale(1.03); }
.content-card-body { padding: 30px; }
.content-card-body .eyebrow { margin-bottom: 14px; }
.content-card-body h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.08; letter-spacing: -.035em; }
.content-card-body h2 a:hover { color: var(--clay); }
.content-card-body .entry-summary { margin: 18px 0; color: #626866; line-height: 1.7; }
.content-card-body .entry-summary p { margin: 0; }
.single-entry { min-height: auto; }
.single-entry .entry-content { margin: 0 auto; }
.single-entry .entry-content > * { margin-left: auto; margin-right: auto; }
.content-meta { max-width: 760px; margin: 0 auto 38px; display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--slate); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.content-meta a { color: var(--orchard); }
.post-navigation { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding-top: 0; display: flex; justify-content: space-between; gap: 30px; }
.post-navigation a { display: inline-flex; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.empty-state { max-width: 760px; }
.empty-state h2 { margin: 0 0 16px; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 64px); font-weight: 400; letter-spacing: -.04em; }
.empty-state p { color: #626866; font-size: 17px; line-height: 1.7; }
.empty-state-actions { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.pagination { margin-top: 55px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.pagination .page-numbers { min-width: 42px; min-height: 42px; display: grid; place-items: center; padding: 8px; border: 1px solid var(--line); }
.pagination .current { background: var(--midnight); color: #fff; }
.not-found { max-width: 700px; }
.not-found p { color: #626866; font-size: 17px; line-height: 1.7; }
.not-found .button { margin-top: 20px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { z-index: 100000; top: 5px; left: 5px; width: auto; height: auto; padding: 15px 23px 14px; clip: auto; background: #fff; color: var(--midnight); font-weight: 700; }
.admin-bar .site-header { top: 70px; }
.admin-bar .site-header.site-header--inner { top: auto; }

:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; }

@media (max-width: 1050px) {
  .desktop-nav, .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: grid; gap: 7px; justify-self: end; width: 44px; height: 44px; place-content: center; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 25px; height: 1px; background: #fff; transition: transform .25s ease; }
  .mobile-nav { position: absolute; top: 92px; left: 0; right: 0; padding: 26px 5vw 34px; display: grid; gap: 0; background: var(--midnight); border-top: 1px solid rgba(255,255,255,.15); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
  .mobile-nav .nav-list { display: grid; }
  .mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.13); font-family: Georgia, serif; font-size: 22px; }
  .belief-statement, .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .welcome { grid-template-columns: 1fr 1fr; gap: 6vw; }
  .welcome-media, .welcome-media > img { min-height: 590px; height: 590px; }
  .media-caption { right: -16px; }
  .visit-copy { padding-left: 8vw; }
  .connect { gap: 6vw; }
}

@media (max-width: 760px) {
  .announcement { justify-content: center; overflow: hidden; white-space: nowrap; padding-inline: 14px; font-size: 9px; }
  .announcement > span:first-child, .announcement-dot, .announcement a { display: none; }
  .site-header { top: 38px; height: 78px; padding: 0 20px; }
  .brand img { width: 42px; height: 42px; }
  .brand strong { font-size: 18px; }
  .mobile-nav { top: 78px; }
  .hero { min-height: 760px; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(9,18,23,.82), rgba(9,18,23,.28)), linear-gradient(0deg, rgba(9,18,23,.72), transparent); }
  .hero-content { left: 20px; right: 20px; bottom: 185px; }
  .hero h1 { font-size: clamp(52px, 15vw, 74px); }
  .hero-copy { margin-top: 24px; font-size: 15px; }
  .hero-actions { margin-top: 28px; gap: 18px; flex-wrap: wrap; }
  .button { gap: 25px; }
  .hero-service-card { left: 20px; right: 20px; bottom: 22px; width: auto; padding: 18px 20px; }
  .hero-service-card > span { margin-bottom: 10px; }
  .hero-index { display: none; }
  .belief-strip, .section-pad { padding: 82px 20px; }
  .section-number { margin-bottom: 30px; }
  .belief-statement { gap: 28px; }
  .belief-statement h2, .welcome h2, .journey h2, .visit h2, .connect h2 { font-size: 43px; }
  .belief-values { grid-template-columns: 1fr; margin-top: 48px; }
  .belief-values span + span { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .welcome { grid-template-columns: 1fr; gap: 80px; }
  .welcome-media, .welcome-media > img { min-height: 460px; height: 460px; }
  .welcome-media::before { left: -10px; bottom: -10px; }
  .media-caption { right: 0; bottom: -35px; }
  .message-feature { min-height: 750px; }
  .message-content { left: 20px; right: 20px; top: 43%; }
  .message-content h2 { font-size: 52px; }
  .message-verse { left: 20px; right: 20px; bottom: 25px; width: auto; }
  .journey-grid { grid-template-columns: 1fr; gap: 58px; margin-top: 50px; }
  .journey-image { aspect-ratio: 4 / 4.4; }
  .journey-card > p:not(.eyebrow) { min-height: 0; }
  .visit { grid-template-columns: 1fr; }
  .visit-image-wrap { min-height: 480px; }
  .visit-entry { right: 20px; bottom: -45px; width: 180px; }
  .visit-badge { left: 20px; top: 20px; width: 108px; height: 108px; }
  .visit-copy { padding: 100px 20px 80px; }
  .connect { grid-template-columns: 1fr; gap: 55px; }
  .connect-note { margin-top: 38px; }
  .connect-form { padding: 30px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .final-cta { height: 500px; padding: 0 20px; }
  .footer-brand { align-items: flex-start; }
  .footer-brand img { width: 78px; height: 78px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .footer-bottom { flex-direction: column; }
  .events-grid { margin-top: 48px; }
  .event-card { grid-template-columns: 78px minmax(0, 1fr); gap: 18px; }
  .event-card time { min-height: 78px; }
  .event-card time strong { font-size: 30px; }
  .event-card > a { grid-column: 2; }
  .entry-list { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .inner-hero { min-height: 480px; }
  .inner-hero-content { padding: 165px 0 62px; }
  .inner-hero-content h1 { font-size: clamp(46px, 14vw, 68px); }
  .content-shell { padding: 78px 0; }
  .admin-bar .site-header { top: 84px; }
  .admin-bar .site-header.site-header--inner { top: auto; }
}

@media (max-width: 600px) {
  .admin-bar .site-header { top: 84px; }
  .admin-bar .site-header.site-header--inner { top: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .home-loader__line span { animation: none; width: 100%; }
}
