:root {
  --bg: #f3eee4;
  --paper: #f8f4ec;
  --surface: #fffdf8;
  --fg: #1b241f;
  --muted: #5d675f;
  --faint: #8a9289;
  --primary: #1e4636;
  --primary-hover: #163528;
  --primary-fg: #f6f1e7;
  --sage: #d7e3da;
  --border: #d5cec0;
  --border-strong: #b9b0a0;
  --ink: #121916;
  --forest: #10251c;
  --cream: #e9e1d1;
  --display: "Fraunces", "Iowan Old Style", Palatino, serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --wrap: 72rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.5rem 0.75rem;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}
.narrow { width: min(100% - 2rem, 48rem); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.25rem;
}
.logo { display: flex; align-items: center; gap: 0.65rem; }
.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--primary);
  display: grid;
  place-items: center;
}
.logo-name {
  font-family: var(--display);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  display: block;
}
.logo-sub {
  display: none;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 640px) { .logo-sub { display: block; } }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 0.15rem; }
.nav-desktop a {
  padding: 0.5rem 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  border-radius: 999px;
}
.nav-desktop a:hover,
.nav-desktop .current-menu-item a { color: var(--fg); }
.header-actions { display: none; gap: 0.5rem; }
@media (min-width: 1024px) {
  .nav-desktop, .header-actions { display: flex; }
  .nav-toggle { display: none; }
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--fg);
}

.nav-mobile {
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem 1.5rem;
  background: var(--paper);
}
.nav-mobile a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ucan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  text-align: center;
}
.ucan-btn-sm { min-height: 2.5rem; padding: 0 1rem; font-size: 0.9rem; }
.ucan-btn-primary { background: var(--primary); color: var(--primary-fg); }
.ucan-btn-primary:hover { background: var(--primary-hover); }
.ucan-btn-secondary {
  background: var(--surface);
  color: var(--fg);
  border-color: var(--border-strong);
}
.ucan-btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.ucan-btn-outline {
  background: transparent;
  color: var(--primary-fg);
  border-color: color-mix(in srgb, var(--cream) 35%, transparent);
}
.ucan-btn-outline:hover { background: rgb(255 255 255 / 0.1); }

.hero {
  position: relative;
  min-height: 78vh;
  color: var(--primary-fg);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
}
.hero > img,
.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--forest), color-mix(in srgb, var(--forest) 80%, transparent) 55%, color-mix(in srgb, var(--forest) 25%, transparent));
}
.hero-copy {
  position: relative;
  padding: 4rem 0;
  max-width: 40rem;
}
.kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}
.hero .kicker { color: var(--cream); }
.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  color: var(--primary-fg);
  font-weight: 500;
}
.hero p { margin-top: 1.15rem; font-size: 1.125rem; color: rgb(246 241 231 / 0.85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0 4rem;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
.page-hero p { margin-top: 1.15rem; font-size: 1.125rem; color: var(--muted); }
.page-hero .ucan-btn { margin-top: 1.75rem; }

.who {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) { .who { grid-template-columns: repeat(4, 1fr); } }
.who h2 { font-size: 1.15rem; font-weight: 500; }
.who p { margin-top: 0.3rem; font-size: 0.9rem; color: var(--muted); }

.section { padding: 4rem 0; }
.section h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 500; }
.lede { margin-top: 1rem; color: var(--muted); max-width: 40rem; }

.steps { display: grid; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px -24px rgb(18 25 22 / 0.35);
}
.card h3 { font-size: 1.45rem; font-weight: 500; margin-top: 0.65rem; }
.card p { margin-top: 0.5rem; color: var(--muted); }
.step-num { font-family: var(--display); color: var(--primary); font-size: 0.9rem; }

.services-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.service-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-card div { padding: 1.2rem; }
.service-card h3 { font-size: 1.25rem; }
.service-card p { margin-top: 0.45rem; font-size: 0.9rem; color: var(--muted); }

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split img, .round-img { width: 100%; border-radius: 18px; object-fit: cover; }
.check-list { margin-top: 1.5rem; }
.check-list li { display: flex; gap: 0.6rem; font-size: 0.95rem; margin-top: 0.7rem; }
.check-list li::before { content: ""; width: 0.55rem; height: 0.55rem; margin-top: 0.45rem; border-radius: 999px; background: var(--primary); flex: none; }

.band {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 3.5rem 0;
}
.band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .band-inner { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.band h2 { color: var(--primary-fg); font-size: clamp(1.75rem, 3vw, 2.35rem); }
.band p { margin-top: 0.7rem; color: rgb(246 241 231 / 0.8); max-width: 36rem; }
.band-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.paper { background: var(--paper); }
.sage { background: color-mix(in srgb, var(--sage) 50%, var(--paper)); }

.site-footer {
  background: var(--forest);
  color: var(--primary-fg);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr; } }
.logo-light .logo-mark { background: rgb(246 241 231 / 0.12); }
.logo-light .logo-name, .logo-light .logo-sub { color: var(--primary-fg); }
.logo-light .logo-sub { opacity: 0.7; }
.footer-lede { margin-top: 1.15rem; color: rgb(246 241 231 / 0.75); max-width: 26rem; }
.site-footer h2 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(246 241 231 / 0.55);
  font-weight: 600;
}
.site-footer li + li { margin-top: 0.6rem; }
.site-footer a { color: rgb(246 241 231 / 0.85); }
.site-footer a:hover { color: var(--primary-fg); }
.footer-note { margin-top: 1.25rem; font-size: 0.9rem; color: rgb(246 241 231 / 0.6); }
.footer-bottom { border-top: 1px solid rgb(255 255 255 / 0.1); }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 0;
  font-size: 0.875rem;
  color: rgb(246 241 231 / 0.5);
}
@media (min-width: 700px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

.scripture {
  border-left: 2px solid var(--primary);
  padding-left: 1.2rem;
  margin: 2rem 0;
}
.scripture p {
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
}
.scripture footer { margin-top: 0.7rem; font-size: 0.9rem; color: var(--muted); font-style: normal; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1.25rem 0; }
.chip {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.service-block { display: grid; gap: 2.5rem; align-items: start; padding: 4rem 0; }
@media (min-width: 900px) { .service-block { grid-template-columns: 5fr 7fr; } }
.service-block img { aspect-ratio: 4/3; object-fit: cover; border-radius: 18px; width: 100%; }
.service-block h2 { font-size: 2rem; }
.service-block .lede { margin-top: 1rem; }
.service-block li { margin-top: 1rem; }
.service-block li strong { display: block; color: var(--fg); }
.service-block li span { font-size: 0.9rem; color: var(--muted); }

.ucan-form { display: grid; gap: 1rem; }
.ucan-grid-2 { display: grid; gap: 1rem; }
@media (min-width: 600px) { .ucan-grid-2 { grid-template-columns: 1fr 1fr; } }
.ucan-field { display: grid; gap: 0.35rem; }
.ucan-label { font-size: 0.9rem; font-weight: 500; }
.ucan-form input,
.ucan-form select,
.ucan-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  min-height: 2.75rem;
  padding: 0 0.85rem;
  font: inherit;
  color: var(--fg);
}
.ucan-form textarea { min-height: 8rem; padding: 0.75rem 0.85rem; }
.ucan-form input:focus,
.ucan-form select:focus,
.ucan-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgb(30 70 54 / 0.18);
}
.ucan-check { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--muted); align-items: flex-start; }
.ucan-check input { width: auto; min-height: 0; margin-top: 0.25rem; }
.ucan-success {
  border: 1px solid #c5d5c8;
  background: var(--sage);
  border-radius: 18px;
  padding: 1.4rem 1.25rem;
}
.ucan-success-title { font-family: var(--display); font-size: 1.5rem; color: var(--ink); margin-bottom: 0.4rem; }

.donate-row { margin-top: 1.25rem; }
.donate-row header { display: flex; justify-content: space-between; align-items: baseline; }
.donate-row strong { font-family: var(--display); font-size: 1.5rem; }
.bar { height: 8px; background: var(--cream); border-radius: 999px; overflow: hidden; margin-top: 0.45rem; }
.bar > span { display: block; height: 100%; background: var(--primary); }

.page-body { padding: 3rem 0 4.5rem; }
.page-body p + p { margin-top: 1rem; }
.page-body p { color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* Gutenberg / block editor content */
.entry-content > .page-hero:first-child {
  margin-top: 0;
}
.entry-content .page-hero + .section,
.entry-content .page-hero + section {
  margin-top: 0;
}
/* When the page already has its own hero with title, hide the automatic one */
.page .page-hero + .entry-content .page-hero {
  display: none;
}
.entry-content > *:first-child {
  margin-top: 0;
}

/* Custom logo in header */
.logo .custom-logo-link,
.logo .custom-logo {
  display: block;
  max-height: 56px;
  width: auto;
}
.logo img.custom-logo {
  max-height: 56px;
  width: auto;
  height: auto;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}


/* Dropdown menus (desktop) */
.nav-desktop .menu-item-has-children {
  position: relative;
}
.nav-desktop .menu-item-has-children > a::after {
  content: " ▾";
  font-size: 0.75em;
  opacity: 0.7;
}
.nav-desktop .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 14rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  padding: 0.5rem;
  z-index: 50;
  flex-direction: column;
  gap: 0;
}
.nav-desktop .menu-item-has-children:hover > .sub-menu,
.nav-desktop .menu-item-has-children:focus-within > .sub-menu {
  display: flex;
}
.nav-desktop .sub-menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  white-space: nowrap;
  border-radius: 8px;
}
.nav-desktop .sub-menu a:hover {
  background: var(--sage);
}

/* Mobile nested menus */
.nav-mobile .sub-menu {
  margin-left: 1rem;
  border-left: 2px solid var(--border);
  padding-left: 0.75rem;
  margin-top: 0.25rem;
}
.nav-mobile .menu-item-has-children > a::after {
  content: " ▾";
}

/* Mobile menu fixes */
.nav-mobile {
  max-height: calc(100vh - 4.25rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile .menu,
.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-mobile .menu-item-has-children > .sub-menu {
  display: none;
  margin-left: 0.5rem;
  border-left: 2px solid var(--border);
  padding-left: 0.75rem;
  margin-top: 0.15rem;
  margin-bottom: 0.35rem;
}
.nav-mobile .menu-item-has-children.is-open > .sub-menu {
  display: block;
}
.nav-mobile .menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-mobile .menu-item-has-children > a::after {
  content: "+";
  font-size: 1.1rem;
  opacity: 0.6;
}
.nav-mobile .menu-item-has-children.is-open > a::after {
  content: "−";
}
.nav-mobile .sub-menu a {
  font-size: 0.92rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile > ul > li > a {
  font-weight: 600;
}

/* Contact form — Have Questions? */
.ucan-contact-form-wrap {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}
.ucan-contact-heading {
  font-family: var(--display);
  font-size: 1.85rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.ucan-contact-heading::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  background: #e8943a;
  margin: 0.5rem auto 1.5rem;
  border-radius: 2px;
}
.ucan-contact-form .ucan-field {
  margin-bottom: 0.85rem;
  text-align: left;
}
.ucan-contact-form input,
.ucan-contact-form textarea {
  width: 100%;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--fg);
}
.ucan-contact-form input:focus,
.ucan-contact-form textarea:focus {
  outline: none;
  border-color: #e8943a;
  box-shadow: 0 0 0 3px rgba(232, 148, 58, 0.2);
}
.ucan-contact-form textarea {
  min-height: 9rem;
  resize: vertical;
}
.ucan-btn-outline-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  min-height: 2.6rem;
  padding: 0 1.75rem;
  border: 1.5px solid #e8943a;
  border-radius: 6px;
  background: transparent;
  color: #c47820;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
}
.ucan-btn-outline-send:hover {
  background: #e8943a;
  color: #fff;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* Professional footer */
.site-footer {
  background: #10251c;
  color: #f6f1e7;
  padding: 3.5rem 0 0;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
}
.footer-logo {
  display: inline-block;
  text-decoration: none;
}
.footer-logo-img {
  max-height: 64px;
  width: auto;
  height: auto;
  display: block;
  filter: brightness(1.05);
}
.footer-lede {
  margin-top: 1.15rem;
  color: rgb(246 241 231 / 0.75);
  max-width: 26rem;
  line-height: 1.6;
  font-size: 0.95rem;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  margin-top: 1.25rem;
}
.footer-social a {
  color: rgb(246 241 231 / 0.7);
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-social a:hover {
  color: #f6f1e7;
  border-bottom-color: rgb(246 241 231 / 0.4);
}
.site-footer h2 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(246 241 231 / 0.55);
  margin: 0 0 1rem;
  font-weight: 600;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li + li { margin-top: 0.55rem; }
.footer-links a {
  color: rgb(246 241 231 / 0.88);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-links a:hover { color: #fff; }
.footer-note {
  margin-top: 1.35rem;
  font-size: 0.85rem;
  color: rgb(246 241 231 / 0.55);
  line-height: 1.5;
  max-width: 18rem;
}
.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding: 1.15rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: rgb(246 241 231 / 0.5);
}
.footer-bottom-inner p { margin: 0; }
@media (min-width: 700px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Gutenberg block content on front-end */
.entry-content {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}
.entry-content .wp-block-columns {
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.entry-content .wp-block-column h3 {
  margin-top: 0;
  font-size: 1.15rem;
}
.entry-content .kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.entry-content .lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--muted);
}
.entry-content .step-num {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 0 0 0.35rem;
}
.entry-content .wp-block-group.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  height: 100%;
}
.entry-content .wp-block-image img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
}
.entry-content .wp-block-button__link {
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
}
.entry-content > .wp-block-heading.has-text-align-center {
  margin-top: 2rem;
}

/* Founder hero with photo */
.founder-hero-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-top: 1rem;
}
@media (min-width: 700px) {
  .founder-hero-grid {
    grid-template-columns: 200px 1fr;
    gap: 2.25rem;
  }
}
.founder-photo {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  justify-self: center;
}
.founder-hero-grid h1 {
  margin-top: 0;
}

/* Home hero — logo only, centered over photo */
.hero.hero-logo-only {
  position: relative;
  min-height: min(70vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero.hero-logo-only .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero.hero-logo-only .hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(16, 37, 28, 0.45);
  z-index: 1;
}
.hero-logo-center {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  width: 100%;
}
.hero-brand-logo {
  position: relative !important;
  inset: auto !important;
  width: min(92vw, 620px) !important;
  max-width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  opacity: 1 !important;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.4));
}
.hero.hero-logo-only .hero-bg {
  opacity: 0.7;
}
.hero.hero-logo-only {
  min-height: min(72vh, 580px);
  align-items: center;
  justify-content: center;
}
@media (min-width: 800px) {
  .hero.hero-logo-only {
    min-height: min(78vh, 680px);
  }
  .hero-brand-logo {
    width: min(75vw, 720px) !important;
  }
}
