@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-500-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ev-ink: #102a43;
  --ev-ink-2: #496b63;
  --ev-forest: #496b63;
  --ev-eucalyptus: #496b63;
  --ev-eucalyptus-light: #edf0ea;
  --ev-detail: #c7a66a;
  --ev-paper: #f7f3ea;
  --ev-white: #ffffff;
  --ev-stone: #ded7c7;
  --ev-text: #102a43;
  --ev-muted: #5f6f79;
  --ev-error: #a12828;
  --ev-display: "Newsreader", Georgia, "Times New Roman", serif;
  --ev-body: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ev-xs: clamp(.78rem, .75rem + .12vw, .86rem);
  --ev-sm: clamp(.92rem, .87rem + .18vw, 1rem);
  --ev-base: clamp(1rem, .96rem + .22vw, 1.12rem);
  --ev-lg: clamp(1.22rem, 1.08rem + .6vw, 1.56rem);
  --ev-xl: clamp(1.72rem, 1.35rem + 1.45vw, 2.5rem);
  --ev-2xl: clamp(2.55rem, 1.75rem + 3.3vw, 5rem);
  --ev-space-1: .5rem;
  --ev-space-2: .85rem;
  --ev-space-3: 1.25rem;
  --ev-space-4: 2rem;
  --ev-space-5: 3.25rem;
  --ev-space-6: clamp(4.5rem, 8vw, 8rem);
  --ev-radius-sm: .35rem;
  --ev-radius: .75rem;
  --ev-shadow: 0 18px 50px rgba(16, 42, 67, .08);
  --ev-max: 76rem;
  --ev-narrow: 48rem;
  --ev-header-height: 5.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; }
[id] { scroll-margin-top: 7rem; }
body {
  margin: 0;
  color: var(--ev-text);
  background: var(--ev-paper);
  font-family: var(--ev-body);
  font-size: var(--ev-base);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--ev-forest); text-underline-offset: .2em; }
a:hover { color: var(--ev-ink); }
button, input, select, textarea { font: inherit; }
input, select, textarea { max-width: 100%; border: 1px solid #8a98a2; border-radius: var(--ev-radius-sm); color: var(--ev-text); background: var(--ev-white); }
input, select, textarea { min-height: 3rem; padding: .65rem .75rem; }
textarea { min-height: 8rem; resize: vertical; }

h1, h2, h3, h4 {
  margin: 0 0 .65em;
  color: var(--ev-ink);
  font-family: var(--ev-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: var(--ev-2xl); }
h2 { font-size: var(--ev-xl); }
h3 { font-size: var(--ev-lg); }
p, ul, ol { margin-top: 0; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--ev-ink);
  outline-offset: 4px;
  border-radius: 2px;
}

.ev-skip-link {
  position: fixed;
  z-index: 10000;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  transform: translateY(-180%);
  color: var(--ev-white);
  background: var(--ev-ink);
  font-weight: 500;
}
.ev-skip-link:focus { transform: translateY(0); }

.ev-container,
.ev-header-inner,
.ev-footer-grid,
.ev-footer-legal {
  width: min(calc(100% - 2rem), var(--ev-max));
  margin-inline: auto;
}
.ev-narrow { width: min(calc(100% - 2rem), var(--ev-narrow)); margin-inline: auto; }
.ev-main { min-height: 55vh; }
.ev-section { position: relative; padding: var(--ev-space-6) 0; background: var(--ev-white); }
.ev-section--paper { background: var(--ev-paper); }
.ev-section--soft { background: var(--ev-eucalyptus-light); }
.ev-section--ink { color: #dfe9eb; background: var(--ev-ink); }
.ev-section--ink h1, .ev-section--ink h2, .ev-section--ink h3 { color: var(--ev-white); }
.ev-section--ink a:not(.ev-button) { color: var(--ev-detail); }
.ev-narrow-section { padding: .6rem 0; background: #fff4e8; font-size: .875rem; }
.ev-narrow-section .ev-notice { padding: .55rem 1rem; }
.ev-narrow-section .ev-container { max-width: var(--ev-narrow); }
.ev-section--rule::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 max(1rem, calc((100vw - var(--ev-max)) / 2));
  width: 1px;
  background: rgba(36, 91, 87, .24);
}
.ev-eyebrow {
  margin-bottom: 1rem;
  color: var(--ev-forest);
  font-size: var(--ev-xs);
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.ev-section--ink .ev-eyebrow { color: var(--ev-detail); }
.ev-lede { max-width: 48rem; font-size: var(--ev-lg); line-height: 1.48; }
.ev-kicker { max-width: 40rem; color: var(--ev-muted); }
.ev-rule { width: 4.5rem; height: .2rem; margin: 1.5rem 0; border: 0; background: var(--ev-detail); }

.ev-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--ev-header-height);
  border-bottom: 1px solid rgba(16, 42, 67, .12);
  background: rgba(247, 243, 234, .97);
  backdrop-filter: blur(10px);
}
.ev-header-inner { display: flex; min-height: var(--ev-header-height); align-items: center; justify-content: space-between; gap: 2rem; }
.ev-brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: .72rem; color: var(--ev-ink); text-decoration: none; }
.ev-brand img { width: min(20rem, 44vw); max-height: 3.75rem; }
.ev-brand .ev-brand__mark { width: 2.75rem; height: 2.75rem; }
.ev-brand__copy { display: grid; gap: .1rem; }
.ev-brand__name { color: var(--ev-ink); font-family: var(--ev-display); font-size: clamp(1.25rem, 1.08rem + .45vw, 1.65rem); font-weight: 500; line-height: 1; }
.ev-brand__tagline { color: var(--ev-forest); font-size: .66rem; font-weight: 500; letter-spacing: .11em; line-height: 1.2; text-transform: uppercase; }
.custom-logo { width: auto; max-height: 3.75rem; }
.ev-nav { display: flex; align-items: center; gap: 1.4rem; }
.ev-nav__list { display: flex; margin: 0; padding: 0; align-items: center; gap: 1.35rem; list-style: none; }
.ev-nav__list a { color: var(--ev-ink); font-size: var(--ev-sm); font-weight: 500; text-decoration: none; }
.ev-nav__list a:hover { color: var(--ev-forest); }
.ev-nav-toggle { display: none; border: 0; color: var(--ev-ink); background: transparent; font-weight: 500; }
html:not(.ev-js) .ev-site-header { position: static; }
.ev-nav__list > li { position: relative; }
.ev-submenu-toggle { display: none; }
.ev-js .ev-parent-link { display: none; }
.ev-js .ev-submenu-toggle { display: inline-flex; align-items: center; gap: .65rem; padding: .65rem 0; border: 0; background: none; color: var(--ev-ink); font-size: var(--ev-sm); cursor: pointer; }
.ev-chevron { width: .5rem; height: .5rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
[aria-expanded="true"] .ev-chevron { transform: rotate(225deg) translate(-1px, -1px); }
.ev-nav .sub-menu { margin: .5rem 0 0; padding: .65rem; list-style: none; background: var(--ev-white); border: 1px solid var(--ev-stone); border-radius: .5rem; }
.ev-js .ev-services-item > .sub-menu { position: absolute; top: 100%; left: -.8rem; width: min(34rem, 85vw); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .2rem; max-height: min(70vh, 38rem); overflow-y: auto; box-shadow: var(--ev-shadow); }
.ev-nav .sub-menu[hidden] { display: none; }
.ev-nav .sub-menu a { display: block; padding: .8rem; font-size: .9rem; line-height: 1.45; border-radius: .25rem; }
.ev-nav .sub-menu li:first-child { grid-column: 1 / -1; border-bottom: 1px solid var(--ev-stone); padding-bottom: .25rem; margin-bottom: .25rem; }
.ev-nav .sub-menu a:hover, .ev-nav .sub-menu a:focus-visible { background: var(--ev-eucalyptus-light); color: var(--ev-ink); }
.ev-nav .current-menu-item > a, .ev-nav .current-menu-ancestor > .ev-submenu-toggle { text-decoration: underline; text-underline-offset: .35em; text-decoration-color: var(--ev-forest); }
.ev-nav-toggle__icon { position: relative; display: inline-block; width: 1.5rem; height: 2px; margin-left: .5rem; background: currentColor; vertical-align: middle; }
.ev-nav-toggle__icon::before, .ev-nav-toggle__icon::after { content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; }
.ev-nav-toggle__icon::before { top: -.45rem; }
.ev-nav-toggle__icon::after { top: .45rem; }

.ev-button {
  display: inline-flex;
  min-height: 3.1rem;
  padding: .75rem 1.25rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ev-ink-2);
  border-radius: var(--ev-radius-sm);
  color: var(--ev-white);
  background: var(--ev-ink-2);
  font-size: var(--ev-sm);
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.ev-button:hover { color: var(--ev-ink-2); background: transparent; transform: translateY(-1px); }
.ev-button--small { min-height: 2.65rem; padding: .55rem .95rem; }
.ev-button--light { border-color: var(--ev-paper); color: var(--ev-ink); background: var(--ev-paper); }
.ev-button--light:hover { color: var(--ev-white); background: transparent; }
.ev-button--outline { color: var(--ev-ink-2); background: transparent; }
.ev-button--outline:hover { color: var(--ev-white); background: var(--ev-ink-2); }
.ev-text-link { display: inline-flex; color: var(--ev-forest); font-weight: 500; text-decoration-thickness: .08em; }
.ev-actions { display: flex; margin-top: 2rem; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }

.ev-hero { position: relative; overflow: hidden; padding: clamp(2.8rem, 5vw, 5rem) 0; color: var(--ev-white); background: var(--ev-ink); }
.ev-hero::after {
  content: "";
  position: absolute;
  right: -7vw;
  bottom: -19rem;
  width: min(52vw, 44rem);
  height: 44rem;
  border: 1px solid rgba(199, 166, 106, .58);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(199, 166, 106, .07), 0 0 0 10rem rgba(199, 166, 106, .04);
}
.ev-hero > .ev-container { position: relative; z-index: 1; }
.ev-hero h1 { max-width: 24ch; color: var(--ev-white); font-size: clamp(2.2rem, 1.5rem + 2.5vw, 4rem); line-height: 1.1; text-wrap: balance; }
.ev-hero .ev-lede { font-size: clamp(1.08rem, 1rem + .3vw, 1.3rem); }
.ev-hero .ev-button:hover { color: var(--ev-paper); border-color: var(--ev-paper); background: transparent; }
.ev-hero :focus-visible, .ev-cta :focus-visible, .ev-site-footer :focus-visible, .ev-credential-panel :focus-visible { outline-color: var(--ev-paper); }
.ev-hero--media::after { display: none; }
.ev-hero-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.ev-hero-layout h1 { max-width: 21ch; }
.ev-hero-figure { margin: 0; position: relative; }
.ev-hero-figure img { width: 100%; aspect-ratio: 4 / 4.3; object-fit: cover; border-radius: .3rem; }
.ev-hero-figure::after { content: ""; display: block; width: 4rem; height: 3px; background: var(--ev-detail); margin-top: 1.25rem; }
.ev-hero-figure figcaption { color: var(--ev-paper); opacity: .8; font-size: .8rem; margin-top: .7rem; }
.ev-media-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: .35rem; }
.ev-media-copy { align-self: center; }
.ev-feature-points { margin: 1.75rem 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.6rem; }
.ev-feature-points li { border-top: 1px solid var(--ev-stone); padding-top: 1rem; }
.ev-feature-points h3 { font-size: 1.25rem; }
.ev-feature-points p { font-size: .95rem; }
.ev-service-directory { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 3rem; list-style: none; margin: 1.5rem 0 0; padding: 0; }
.ev-service-directory a { display: block; height: 100%; padding: 1.2rem 0; color: var(--ev-ink); text-decoration: none; border-bottom: 1px solid var(--ev-stone); }
.ev-service-directory a > span { font-weight: 600; font-size: 1.08rem; }
.ev-service-directory a:hover { color: var(--ev-forest); text-decoration: underline; }
.ev-service-directory small { display: block; color: var(--ev-muted); font-size: .9rem; margin-top: .3rem; }
.ev-sample { border: 1px solid var(--ev-stone); padding: clamp(1.3rem,3vw,2.3rem); background: white; box-shadow: var(--ev-shadow); }
.ev-sample__label { display: flex; justify-content: space-between; gap: .75rem; font-size: .8rem; padding-bottom: 1.1rem; margin-bottom: 1.5rem; border-bottom: 2px solid var(--ev-forest); }
.ev-sample ol { padding-left: 1.2rem; }
.ev-sample li { margin-bottom: 1rem; }
.ev-sample strong { display: block; }
.ev-sample p, .ev-sample li { font-size: .95rem; }
.ev-section--compact { padding-block: 2.5rem; }
.ev-credential-panel--compact .ev-credential-grid { gap: 1rem; background: transparent; }
.ev-credential-panel--compact .ev-credential-proof { padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.2); background: transparent; }
.ev-credential-panel.ev-credential-panel--compact h2 { max-width: 28ch; }
.ev-insight-image { margin: 0 0 1.25rem; }
.ev-insight-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: .65rem .65rem 0 0; }
.ev-hero .ev-lede { max-width: 46rem; color: var(--ev-paper); }
.ev-hero .ev-eyebrow { color: var(--ev-detail); }
.ev-hero .ev-actions { position: relative; z-index: 2; }

.ev-trust-strip { padding: 1.25rem 0; border-bottom: 1px solid var(--ev-forest); background: var(--ev-forest); }
.ev-trust-list { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(4, 1fr); gap: 1rem; list-style: none; }
.ev-trust-list li { position: relative; padding-left: 1.25rem; color: var(--ev-white); font-size: var(--ev-sm); font-weight: 500; }
.ev-trust-list li::before { content: ""; position: absolute; top: .62em; left: 0; width: .45rem; height: .45rem; border-radius: 50%; background: var(--ev-detail); }

.ev-credential-feature { background: var(--ev-paper); }
.ev-credential-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(199, 166, 106, .6);
  border-radius: var(--ev-radius);
  color: var(--ev-paper);
  background:
    radial-gradient(circle at 96% 8%, rgba(199, 166, 106, .17), transparent 27rem),
    linear-gradient(145deg, var(--ev-ink) 0%, #0b2238 100%);
  box-shadow: 0 1.5rem 4rem rgba(16, 42, 67, .14);
}
.ev-credential-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -11rem;
  right: -8rem;
  width: 29rem;
  height: 29rem;
  border: 1px solid rgba(199, 166, 106, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(199, 166, 106, .035), 0 0 0 8rem rgba(199, 166, 106, .02);
}
.ev-credential-panel > * { position: relative; z-index: 1; }
.ev-credential-panel .ev-eyebrow { color: var(--ev-detail); }
.ev-credential-panel h2 { max-width: 18ch; color: var(--ev-white); }
.ev-credential-panel .ev-lede { max-width: 58rem; color: #e7ece8; }
.ev-credential-grid { display: grid; margin-top: clamp(2rem, 4vw, 3.5rem); grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(199, 166, 106, .4); }
.ev-credential-proof { padding: clamp(1.25rem, 2.5vw, 2rem); background: rgba(16, 42, 67, .96); }
.ev-credential-proof__number { display: block; margin-bottom: 1.5rem; color: var(--ev-detail); font-family: var(--ev-display); font-size: 1rem; font-weight: 500; letter-spacing: .08em; }
.ev-credential-proof h3 { color: var(--ev-white); font-size: clamp(1.2rem, 1.05rem + .35vw, 1.5rem); }
.ev-credential-proof p { color: #dfe7e4; font-size: var(--ev-sm); }
.ev-credential-panel__footer { display: grid; margin-top: 2rem; padding-top: 1.5rem; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2rem; border-top: 1px solid rgba(199, 166, 106, .32); }
.ev-credential-source, .ev-credential-caveat { max-width: 57rem; color: #dfe7e4; font-size: var(--ev-xs); }
.ev-credential-source { margin-bottom: .65rem; }
.ev-credential-source span { color: var(--ev-detail); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.ev-credential-source a { color: var(--ev-white); }
.ev-credential-caveat { opacity: .9; }

.ev-grid { display: grid; gap: 1.25rem; }
.ev-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ev-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ev-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ev-card {
  position: relative;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid var(--ev-stone);
  border-radius: var(--ev-radius);
  background: var(--ev-white);
  box-shadow: 0 0 0 rgba(16, 42, 67, 0);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.ev-card:has(a):hover, .ev-card:has(a):focus-within { border-color: var(--ev-forest); box-shadow: var(--ev-shadow); }
.ev-card { display: flex; flex-direction: column; }
.ev-card h3, .ev-card__title { margin-bottom: .65rem; font-size: clamp(1.25rem, 1.1rem + .4vw, 1.65rem); }
.ev-card__title a { color: inherit; text-decoration: none; }
.ev-card__meta { margin-bottom: .75rem; color: var(--ev-muted); font-size: var(--ev-xs); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.ev-card .ev-text-link { margin-top: auto; }
.ev-card--accent { border-top: .3rem solid var(--ev-detail); }
.ev-card--ink { border-color: var(--ev-ink); color: var(--ev-paper); background: var(--ev-ink); }
.ev-card--ink h3 { color: var(--ev-white); }

.ev-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; gap: clamp(2rem, 6vw, 6rem); }
.ev-sticky-intro { position: sticky; top: calc(var(--ev-header-height) + 2rem); }
.ev-list-clean { margin: 0; padding: 0; list-style: none; }
.ev-list-clean li { padding: 1rem 0; border-bottom: 1px solid var(--ev-stone); }
.ev-list-check { padding-left: 0; list-style: none; }
.ev-list-check li { position: relative; margin-bottom: .75rem; padding-left: 1.6rem; }
.ev-list-check li::before { content: ""; position: absolute; top: .55em; left: 0; width: .55rem; height: .3rem; border-bottom: 2px solid var(--ev-forest); border-left: 2px solid var(--ev-forest); transform: rotate(-45deg); }

.ev-process { counter-reset: evident-step; }
.ev-process .ev-card { padding-top: 4.25rem; }
.ev-process .ev-card::before { counter-increment: evident-step; content: "0" counter(evident-step); position: absolute; top: 1.25rem; left: 1.5rem; color: var(--ev-forest); font-family: var(--ev-display); font-size: 1.25rem; font-weight: 500; }

.ev-notice { padding: 1.15rem 1.25rem; border-left: .3rem solid var(--ev-detail); background: var(--ev-eucalyptus-light); }
.ev-notice--warning { border-color: #b7692f; background: #fff4e8; }
.ev-notice strong { color: var(--ev-ink); }
.ev-property-boundary { padding: clamp(2rem, 4vw, 3.5rem); border: 1px solid var(--ev-detail); background: linear-gradient(135deg, var(--ev-paper) 0%, var(--ev-white) 75%); }

.ev-faq details { border-bottom: 1px solid var(--ev-stone); }
.ev-faq summary { padding: 1.15rem 2.5rem 1.15rem 0; cursor: pointer; color: var(--ev-ink); font-weight: 500; list-style: none; }
.ev-faq summary::-webkit-details-marker { display: none; }
.ev-faq summary::after { content: "+"; float: right; margin-right: -2rem; color: var(--ev-forest); font-size: 1.35rem; }
.ev-faq details[open] summary::after { content: "–"; }
.ev-faq details > div { padding: 0 2rem 1.25rem 0; }

.ev-cta { overflow: hidden; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--ev-radius); color: var(--ev-paper); background: var(--ev-ink-2); }
.ev-cta h2 { max-width: 18ch; color: var(--ev-white); }
.ev-cta p { max-width: 48rem; }

.ev-booking-frame { width: 100%; min-height: 720px; border: 1px solid var(--ev-stone); border-radius: var(--ev-radius); background: var(--ev-white); }
.ev-form-fallback { padding: 2rem; border: 1px solid var(--ev-stone); border-radius: var(--ev-radius); background: var(--ev-paper); }
.ev-form-fallback .ev-button { margin-top: 1rem; }

.ev-page-content, .ev-prose { padding-top: var(--ev-space-5); padding-bottom: var(--ev-space-6); }
.ev-entry-header { max-width: 50rem; margin-bottom: 2.5rem; }
.ev-prose { font-size: 1.05rem; }
.ev-prose h2 { margin-top: 2.2em; }
.ev-prose h3 { margin-top: 1.8em; }
.ev-prose blockquote { margin: 2rem 0; padding: 1.4rem 1.75rem; border-left: .3rem solid var(--ev-forest); background: var(--ev-paper); }
.ev-archive-header { max-width: 52rem; margin-bottom: 3rem; }
.ev-article-header { padding: clamp(4rem, 8vw, 7rem) 0 2rem; background: var(--ev-paper); }
.ev-article-header h1 { max-width: 18ch; }
.ev-article-meta { color: var(--ev-muted); font-size: var(--ev-sm); }
.ev-empty { max-width: 44rem; padding: 4rem 0; }
.search-form { display: flex; max-width: 40rem; flex-wrap: wrap; gap: .75rem; }
.search-form label { flex: 1 1 18rem; }
.search-form .search-field { width: 100%; }
.search-form .search-submit { min-height: 3rem; padding: .65rem 1.1rem; border: 2px solid var(--ev-ink-2); color: var(--ev-white); background: var(--ev-ink-2); font-weight: 500; cursor: pointer; }
.search-form .search-submit:hover { color: var(--ev-ink-2); background: transparent; }
.pagination { margin-top: 3rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.page-numbers { display: inline-grid; min-width: 2.75rem; min-height: 2.75rem; padding: .45rem; place-items: center; border: 1px solid var(--ev-stone); text-decoration: none; }
.page-numbers.current { color: var(--ev-white); background: var(--ev-ink); }

.ev-site-footer { padding: 4.5rem 0 1.5rem; color: var(--ev-paper); background: var(--ev-ink); }
.ev-site-footer .ev-brand { color: var(--ev-paper); }
.ev-site-footer .ev-brand__name { color: var(--ev-paper); }
.ev-site-footer .ev-brand__tagline { color: var(--ev-detail); }
.ev-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
.ev-footer-brand p { max-width: 31rem; margin-top: 1.5rem; }
.ev-footer-heading { color: var(--ev-white); font-family: var(--ev-body); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
.ev-footer-list { margin: 0; padding: 0; list-style: none; }
.ev-footer-list li { margin-bottom: .55rem; }
.ev-footer-list a { color: var(--ev-paper); text-decoration: none; }
.ev-footer-list a:hover { color: var(--ev-white); text-decoration: underline; }
.ev-footer-fallback { margin-top: .5rem; }
.ev-footer-legal { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .16); }
.ev-footer-legal p { max-width: 74rem; color: var(--ev-paper); font-size: .78rem; line-height: 1.55; opacity: .76; }

.ev-portrait-placeholder {
  display: grid;
  min-height: 15rem;
  margin: -1.75rem -1.75rem 1.5rem;
  place-items: center;
  border-radius: var(--ev-radius) var(--ev-radius) 0 0;
  color: var(--ev-paper);
  background:
    linear-gradient(145deg, rgba(73, 107, 99, .55), transparent 55%),
    var(--ev-ink);
  font-family: var(--ev-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: .08em;
}


/* Native WordPress block-editor content. */
.ev-prose > :where(p, ul, ol, blockquote, h2, h3, h4, figure, table) { max-width: var(--ev-narrow); margin-inline: auto; }
.ev-prose > .alignwide { max-width: var(--ev-max); }
.ev-prose > .alignfull { max-width: none; margin-inline: calc(50% - 50vw); }
.wp-block-button__link { border: 2px solid var(--ev-ink-2); border-radius: var(--ev-radius-sm); color: var(--ev-white); background: var(--ev-ink-2); font-weight: 500; }
.wp-block-button__link:hover { color: var(--ev-ink-2); background: transparent; }
.wp-block-table table { width: 100%; border-collapse: collapse; }
.wp-block-table th, .wp-block-table td { padding: .8rem; border: 1px solid var(--ev-stone); text-align: left; }

@media (max-width: 68rem) {
  html:not(.ev-js) .ev-header-inner { flex-wrap: wrap; }
  html:not(.ev-js) .ev-nav { position: static; flex-basis: 100%; max-height: none; overflow: visible; box-shadow: none; }
  .ev-js .ev-services-item > .sub-menu { position: static; width: 100%; box-shadow: none; margin: .3rem 0 1rem; max-height: none; }
  .ev-js .ev-submenu-toggle { width: 100%; justify-content: space-between; padding: .75rem 0; }
  .ev-nav { max-height: calc(100dvh - var(--ev-header-height)); overflow-y: auto; }
  .ev-js .ev-nav-toggle { display: inline-flex; min-height: 2.75rem; align-items: center; }
  .ev-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    padding: 1.25rem max(1rem, calc((100vw - var(--ev-max)) / 2));
    align-items: stretch;
    border-bottom: 1px solid var(--ev-stone);
    background: var(--ev-white);
    box-shadow: var(--ev-shadow);
  }
  .ev-js .ev-nav { display: none; }
  .ev-js .ev-nav.is-open { display: block; }
  .ev-nav__list { align-items: stretch; flex-direction: column; gap: 0; }
  .ev-nav__list a { display: block; padding: .75rem 0; }
  .ev-nav .ev-button { margin-top: 1rem; }
  .ev-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ev-credential-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ev-credential-panel__footer { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 52rem) {
  .ev-hero-layout { grid-template-columns: 1fr; gap: 2rem; }
  .ev-hero-layout h1 { max-width: 26ch; }
  .ev-hero-figure img { aspect-ratio: 16 / 9; max-height: 22rem; }
  :root { --ev-header-height: 4.6rem; }
  .ev-brand img { width: min(17rem, 58vw); }
  .ev-trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ev-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ev-split { grid-template-columns: 1fr; }
  .ev-sticky-intro { position: static; }
  .ev-footer-grid { grid-template-columns: 1fr 1fr; }
  .ev-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 38rem) {
  .ev-section { padding: 2.75rem 0; }
  .ev-section--compact { padding-block: 1.5rem; }
  .ev-narrow-section { padding: .4rem 0; }
  .ev-header-inner { gap: .65rem; }
  .ev-brand { gap: .5rem; min-width: 0; flex: 1 1 auto; }
  .ev-brand .ev-brand__mark { width: 2rem; height: 2rem; flex-shrink: 0; }
  .ev-brand__name { font-size: 1.14rem; }
  .ev-brand__tagline { font-size: .6rem; letter-spacing: .055em; }
  .ev-nav-toggle { flex-shrink: 0; padding-inline: .3rem; }
  .ev-nav-toggle__icon { margin-left: .3rem; }
  .ev-js .ev-services-item > .sub-menu { grid-template-columns: 1fr; }
  .ev-feature-points, .ev-service-directory { grid-template-columns: 1fr; }
  .ev-grid--2, .ev-grid--3, .ev-grid--4 { grid-template-columns: 1fr; }
  .ev-credential-grid { grid-template-columns: 1fr; }
  .ev-trust-list { grid-template-columns: 1fr; }
  .ev-actions { align-items: stretch; flex-direction: column; }
  .ev-actions .ev-button { width: 100%; }
  .ev-footer-grid { grid-template-columns: 1fr; }
  .ev-footer-brand { grid-column: auto; }
  .ev-hero::after { right: -45vw; opacity: .55; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .ev-site-header, .ev-site-footer, .ev-actions { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .ev-section { padding: 1.5rem 0; }
}
