/**
 * Waystar theme styles.
 *
 * The palette and font families arrive as CSS custom properties printed by
 * inc/enqueue.php, so changing a colour in the Customizer updates everything
 * here without editing this file.
 */

/* -----------------------------------------------------------------------------
 * 1. Tokens
 * -------------------------------------------------------------------------- */

:root {
	--ws-navy: #0c1b29;
	--ws-blue: #142c40;
	--ws-copper: #c98545;
	--ws-cream: #f3efe7;
	--ws-paper: #fbfaf7;
	--ws-ink: #14202a;
	--ws-muted: #626f78;

	--ws-line: #dcd7cd;
	--ws-line-dark: rgba(255, 255, 255, 0.16);

	/*
	 * The brand copper is used for fills, borders and large shapes. Small copper
	 * text on a light ground falls below the WCAG AA contrast minimum, so text
	 * uses a darker shade of the same hue, and dark grounds use the light shade.
	 * Both are editable in Customize, Waystar theme, Colors.
	 */
	--ws-copper-text: #946233;
	--ws-copper-soft: #efb477;
	--ws-white: #ffffff;

	--ws-font-heading: "Oswald", "Arial Narrow", Arial, sans-serif;
	--ws-font-body: "Manrope", "Segoe UI", Arial, sans-serif;

	--ws-container: 1180px;
	--ws-gutter: clamp(20px, 4vw, 40px);
	--ws-section: clamp(64px, 8vw, 108px);
	--ws-radius: 2px;

	--ws-shadow-sm: 0 2px 10px rgba(12, 27, 41, 0.06);
	--ws-shadow-md: 0 18px 40px rgba(12, 27, 41, 0.1);
	--ws-shadow-lg: 0 24px 60px rgba(7, 17, 26, 0.2);

	--ws-header-h: 84px;
	--ws-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -----------------------------------------------------------------------------
 * 2. Base
 * -------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--ws-header-h) + 20px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--ws-paper);
	color: var(--ws-ink);
	font-family: var(--ws-font-body);
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img,
picture,
video,
svg {
	max-width: 100%;
	height: auto;
}

img {
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.ws-entry a:not(.ws-button) {
	color: #9a6122;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ws-entry a:not(.ws-button):hover {
	color: var(--ws-navy);
}

h1,
h2,
h3,
h4 {
	font-family: var(--ws-font-heading);
	font-weight: 600;
	line-height: 1.06;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	margin: 0 0 0.5em;
	text-wrap: balance;
}

p {
	margin: 0 0 1.1em;
}

p:last-child {
	margin-bottom: 0;
}

ul,
ol {
	margin: 0 0 1.1em;
	padding-left: 1.2em;
}

strong,
b {
	font-weight: 800;
}

address {
	font-style: normal;
}

hr {
	border: 0;
	border-top: 1px solid var(--ws-line);
	margin: 2.5rem 0;
}

::selection {
	background: var(--ws-copper);
	color: #fff;
}

/* -----------------------------------------------------------------------------
 * 3. Accessibility helpers
 * -------------------------------------------------------------------------- */

.ws-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.ws-skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 999;
	padding: 12px 20px;
	background: var(--ws-navy);
	color: #fff;
	font-weight: 800;
	font-size: 0.85rem;
	transition: top 0.2s var(--ws-ease);
}

.ws-skip-link:focus {
	top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--ws-copper);
	outline-offset: 3px;
	border-radius: var(--ws-radius);
}

.ws-section--dark a:focus-visible,
.ws-section--navy a:focus-visible,
.ws-footer a:focus-visible,
.ws-hero a:focus-visible,
.ws-hero button:focus-visible,
.ws-header--dark a:focus-visible {
	outline-color: var(--ws-copper-soft);
}

/* -----------------------------------------------------------------------------
 * 4. Layout
 * -------------------------------------------------------------------------- */

.ws-site {
	display: flow-root;
	overflow-x: clip;
}

.ws-container {
	width: min(var(--ws-container), 100% - (var(--ws-gutter) * 2));
	margin-inline: auto;
}

.ws-container--narrow {
	width: min(820px, 100% - (var(--ws-gutter) * 2));
}

.ws-section {
	padding-block: var(--ws-section);
}

.ws-section--flush {
	padding-block: 0;
}

.ws-section--cream {
	background: var(--ws-cream);
}

.ws-section--dark {
	background: var(--ws-navy);
	color: #e4eaee;
}

.ws-section--navy {
	background: var(--ws-blue);
	color: #e4eaee;
}

.ws-section--dark h1,
.ws-section--dark h2,
.ws-section--dark h3,
.ws-section--navy h1,
.ws-section--navy h2,
.ws-section--navy h3 {
	color: #fff;
}

.ws-section__title {
	font-size: clamp(2rem, 4vw, 3.4rem);
	margin-bottom: 0.6em;
}

.ws-section__action {
	margin-top: 42px;
}

.ws-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: start;
}

.ws-two-col--wide {
	grid-template-columns: 0.85fr 1.15fr;
}

.ws-two-col__media img,
.ws-two-col__media picture {
	width: 100%;
}

.ws-layout {
	display: grid;
	gap: clamp(32px, 5vw, 64px);
}

.ws-layout--sidebar {
	grid-template-columns: minmax(0, 1fr) 300px;
}

/* -----------------------------------------------------------------------------
 * 5. Typography helpers
 * -------------------------------------------------------------------------- */

.ws-eyebrow {
	margin: 0 0 12px;
	font-family: var(--ws-font-body);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ws-copper-text);
}

.ws-section--dark .ws-eyebrow,
.ws-section--navy .ws-eyebrow,
.ws-hero .ws-eyebrow,
.ws-page-hero .ws-eyebrow,
.ws-cta .ws-eyebrow {
	color: var(--ws-copper-soft);
}

.ws-heading {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(28px, 5vw, 64px);
	align-items: end;
	margin-bottom: clamp(36px, 5vw, 56px);
}

.ws-heading--stack,
.ws-heading--center {
	grid-template-columns: 1fr;
}

.ws-heading--center {
	text-align: center;
	max-width: 760px;
	margin-inline: auto;
}

.ws-heading__title {
	font-size: clamp(2.1rem, 4.4vw, 4rem);
	margin: 0;
}

.ws-heading__text {
	color: var(--ws-muted);
	line-height: 1.8;
}

.ws-section--dark .ws-heading__text,
.ws-section--navy .ws-heading__text {
	color: #b6c2cb;
}

/*
 * Copper accents flip to the light shade on dark grounds. Grouped here so every
 * dark context is covered in one place rather than rule by rule.
 */
.ws-section--dark .ws-steps__number,
.ws-section--navy .ws-steps__number,
.ws-section--dark .ws-checklist svg,
.ws-section--navy .ws-checklist svg,
.ws-split--navy .ws-checklist svg,
.ws-section--dark .ws-faq__question svg,
.ws-section--navy .ws-faq__question svg,
.ws-section--dark .ws-family__subtitle,
.ws-section--navy .ws-family__subtitle,
.ws-section--dark .ws-detail__title,
.ws-contact-card--panel .ws-contact-list__item svg,
.ws-detail__card .ws-contact__label,
.ws-section--dark .ws-bulletlist li::before,
.ws-section--navy .ws-bulletlist li::before {
	color: var(--ws-copper-soft);
}

.ws-section--dark .ws-bulletlist li::before,
.ws-section--navy .ws-bulletlist li::before {
	background: var(--ws-copper-soft);
}

.ws-section--dark .ws-bulletlist li,
.ws-section--navy .ws-bulletlist li,
.ws-section--dark .ws-detail__menu li,
.ws-section--dark .ws-linklist li {
	border-top-color: var(--ws-line-dark);
}

.ws-placeholder {
	color: var(--ws-muted);
	font-style: italic;
}

.ws-footer .ws-placeholder,
.ws-contact-card--panel .ws-placeholder,
.ws-detail__card .ws-placeholder,
.ws-section--dark .ws-placeholder,
.ws-section--navy .ws-placeholder {
	color: #a7b4bf;
}

.ws-empty {
	padding: 40px 0;
	color: var(--ws-muted);
	font-size: 1.05rem;
}

.ws-notice {
	margin: 24px 0;
	padding: 16px 20px;
	border-left: 3px solid var(--ws-copper);
	background: var(--ws-cream);
	color: var(--ws-ink);
	font-size: 0.92rem;
}

.ws-notice--success {
	border-left-color: #2f7a4f;
	background: #eaf4ee;
}

.ws-notice--error {
	border-left-color: #a8342b;
	background: #f9ecea;
}

.ws-concept-tag,
.ws-quote__tag {
	display: inline-block;
	padding: 5px 10px;
	background: var(--ws-navy);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ws-concept-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 3;
	background: rgba(12, 27, 41, 0.9);
}

/* -----------------------------------------------------------------------------
 * 6. Buttons
 * -------------------------------------------------------------------------- */

.ws-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 28px;
	border: 2px solid transparent;
	background: var(--ws-copper-text);
	color: #fff;
	font-family: var(--ws-font-body);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	transition: background 0.2s var(--ws-ease), color 0.2s var(--ws-ease),
		border-color 0.2s var(--ws-ease), transform 0.2s var(--ws-ease);
}

.ws-button:hover {
	background: #7c5029;
	transform: translateY(-2px);
}

.ws-button--light {
	background: #fff;
	color: var(--ws-navy);
}

.ws-button--light:hover {
	background: var(--ws-cream);
}

.ws-button--ghost {
	background: transparent;
	border-color: var(--ws-navy);
	color: var(--ws-navy);
}

.ws-button--ghost:hover {
	background: var(--ws-navy);
	color: #fff;
}

.ws-section--dark .ws-button--ghost,
.ws-section--navy .ws-button--ghost {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.ws-section--dark .ws-button--ghost:hover,
.ws-section--navy .ws-button--ghost:hover {
	background: #fff;
	color: var(--ws-navy);
}

.ws-button--compact {
	min-height: 44px;
	padding: 0 20px;
	font-size: 0.72rem;
}

.ws-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

/* -----------------------------------------------------------------------------
 * 7. Top bar and header
 * -------------------------------------------------------------------------- */

.ws-topbar {
	background: var(--ws-navy);
	color: #cdd8e0;
	font-size: 0.74rem;
	letter-spacing: 0.02em;
}

.ws-topbar__inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-block: 10px;
}

.ws-header {
	position: relative;
	z-index: 60;
	background: rgba(251, 250, 247, 0.96);
	border-bottom: 1px solid var(--ws-line);
	backdrop-filter: blur(12px);
}

.ws-header--sticky {
	position: sticky;
	top: 0;
}

.ws-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: var(--ws-header-h);
}

.ws-header__brand {
	flex: 0 0 auto;
}

.ws-logo,
.custom-logo-link {
	display: inline-block;
	line-height: 0;
}

.ws-logo__img,
.custom-logo {
	width: auto;
	max-width: 240px;
	max-height: 52px;
	object-fit: contain;
}

.ws-header__burger {
	display: none;
	margin-left: auto;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--ws-line);
	background: #fff;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.ws-header__burger-bars,
.ws-header__burger-bars::before,
.ws-header__burger-bars::after {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--ws-navy);
	transition: transform 0.25s var(--ws-ease), opacity 0.2s var(--ws-ease);
}

.ws-header__burger-bars::before,
.ws-header__burger-bars::after {
	content: "";
	position: absolute;
}

.ws-header__burger-bars::before {
	transform: translateY(-6px);
}

.ws-header__burger-bars::after {
	transform: translateY(6px);
}

.ws-header__burger[aria-expanded="true"] .ws-header__burger-bars {
	background: transparent;
}

.ws-header__burger[aria-expanded="true"] .ws-header__burger-bars::before {
	transform: rotate(45deg);
}

.ws-header__burger[aria-expanded="true"] .ws-header__burger-bars::after {
	transform: rotate(-45deg);
}

.ws-header__backdrop {
	position: fixed;
	inset: 0;
	z-index: 55;
	background: rgba(8, 16, 24, 0.5);
}

/* -----------------------------------------------------------------------------
 * 8. Primary navigation and mega menu
 * -------------------------------------------------------------------------- */

.ws-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-left: auto;
}

.ws-nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ws-nav__item {
	position: relative;
}

.ws-nav__item--top > .ws-nav__link {
	display: inline-flex;
	align-items: center;
	padding-block: calc((var(--ws-header-h) - 22px) / 2);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	transition: color 0.2s var(--ws-ease);
}

.ws-nav__item--top > .ws-nav__link:hover,
.ws-nav__item.is-current > .ws-nav__link {
	color: var(--ws-copper-text);
}

.ws-nav__item--parent > .ws-nav__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	padding: 0;
	border: 0;
	background: none;
	color: currentColor;
	cursor: pointer;
	vertical-align: middle;
	transition: transform 0.2s var(--ws-ease);
}

.ws-nav__item--parent > .ws-nav__toggle[aria-expanded="true"] {
	transform: rotate(180deg);
}

.ws-nav__cta {
	flex: 0 0 auto;
}

.ws-nav__notice {
	margin: 8px 0 0;
	font-size: 0.78rem;
}

/* Standard dropdown. */
.ws-submenu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 40;
	min-width: 240px;
	margin: 0;
	padding: 12px 0;
	list-style: none;
	background: #fff;
	border-top: 3px solid var(--ws-copper);
	box-shadow: var(--ws-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s var(--ws-ease), transform 0.2s var(--ws-ease),
		visibility 0.2s;
}

.ws-nav__item--parent:hover > .ws-submenu,
.ws-nav__item--parent:focus-within > .ws-submenu,
.ws-nav__item--parent.is-open > .ws-submenu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.ws-submenu__link {
	display: block;
	padding: 9px 22px;
	font-size: 0.85rem;
	font-weight: 700;
}

.ws-submenu__link:hover {
	color: var(--ws-copper-text);
	background: var(--ws-cream);
}

/* Mega menu. */
.ws-mega {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 40;
	width: min(1080px, calc(100vw - 40px));
	transform: translate(-50%, 8px);
	background: #fff;
	border-top: 3px solid var(--ws-copper);
	box-shadow: var(--ws-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s var(--ws-ease), transform 0.2s var(--ws-ease),
		visibility 0.2s;
}

.ws-nav__item--mega:hover > .ws-mega,
.ws-nav__item--mega:focus-within > .ws-mega,
.ws-nav__item--mega.is-open > .ws-mega {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.ws-mega__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 28px 32px;
	padding: 34px 38px 38px;
	/* A long service list must never run off the bottom of a short laptop screen. */
	max-height: calc(100vh - var(--ws-header-h) - 60px);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.ws-mega__title {
	display: block;
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--ws-line);
	font-family: var(--ws-font-body);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ws-copper-text);
}

a.ws-mega__title:hover {
	color: var(--ws-navy);
}

.ws-mega__links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ws-mega__link {
	display: block;
	padding: 6px 0;
	font-size: 0.83rem;
	font-weight: 600;
	color: #2b3944;
	transition: color 0.15s var(--ws-ease), transform 0.15s var(--ws-ease);
}

.ws-mega__link:hover {
	color: var(--ws-copper-text);
	transform: translateX(3px);
}

.ws-mega .ws-nav__toggle {
	display: none;
}

/* -----------------------------------------------------------------------------
 * 9. Hero slider
 * -------------------------------------------------------------------------- */

.ws-hero {
	position: relative;
	height: clamp(520px, 76vh, 760px);
	overflow: hidden;
	background: var(--ws-navy);
	color: #fff;
}

.ws-hero__slides {
	position: absolute;
	inset: 0;
}

.ws-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s var(--ws-ease), visibility 0.7s;
}

.ws-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.ws-hero__slide picture,
.ws-hero__slide > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ws-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ws-hero__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(6, 16, 25, 0.94) 0%,
		rgba(6, 16, 25, 0.68) 52%,
		rgba(6, 16, 25, 0.24) 100%
	);
}

.ws-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	height: 100%;
}

.ws-hero__copy {
	max-width: 700px;
	padding-block: 40px;
	/* The outgoing copy clears quickly so two headlines never overlap mid fade. */
	opacity: 0;
	transition: opacity 0.25s var(--ws-ease);
}

.ws-hero__slide.is-active .ws-hero__copy {
	opacity: 1;
	transition: opacity 0.45s var(--ws-ease) 0.35s;
}

.ws-hero__title {
	margin: 14px 0 20px;
	font-size: clamp(2.6rem, 6.4vw, 6rem);
	line-height: 0.94;
	color: #fff;
}

.ws-hero__highlight {
	display: block;
	color: var(--ws-copper-soft);
}

.ws-hero__text {
	max-width: 580px;
	color: #d5dee5;
	font-size: 1.02rem;
	line-height: 1.75;
}

.ws-hero__arrows {
	position: absolute;
	z-index: 4;
	left: 50%;
	bottom: 34px;
	transform: translateX(calc(min(var(--ws-container), 100vw - (var(--ws-gutter) * 2)) / -2));
	display: flex;
	gap: 8px;
}

.ws-hero__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(8, 18, 27, 0.4);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s var(--ws-ease), border-color 0.2s var(--ws-ease);
}

.ws-hero__arrow:hover {
	background: var(--ws-copper);
	border-color: var(--ws-copper);
}

.ws-hero__arrow--prev svg {
	transform: rotate(90deg);
}

.ws-hero__arrow--next svg {
	transform: rotate(-90deg);
}

.ws-hero__dots {
	position: absolute;
	z-index: 4;
	right: max(var(--ws-gutter), calc((100vw - var(--ws-container)) / 2));
	bottom: 26px;
	display: flex;
	gap: 8px;
}

/*
 * The indicator reads as a 4px bar but carries a 44px tall hit area, so it is
 * comfortable to tap without changing the design.
 */
.ws-hero__dot {
	width: 42px;
	height: 44px;
	padding: 20px 0;
	border: 0;
	background: rgba(255, 255, 255, 0.4);
	background-clip: content-box;
	cursor: pointer;
	transition: background-color 0.2s var(--ws-ease);
}

.ws-hero__dot.is-active {
	background-color: var(--ws-copper);
}

.ws-hero__playpause {
	position: absolute;
	z-index: 4;
	right: max(var(--ws-gutter), calc((100vw - var(--ws-container)) / 2));
	bottom: 80px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(8, 18, 27, 0.4);
	cursor: pointer;
}

.ws-hero__playpause-bars {
	position: relative;
	display: block;
	width: 10px;
	height: 12px;
	border-left: 3px solid #fff;
	border-right: 3px solid #fff;
}

.ws-hero__playpause[aria-pressed="true"] .ws-hero__playpause-bars {
	width: 0;
	height: 0;
	border-left: 10px solid #fff;
	border-right: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
}

/* -----------------------------------------------------------------------------
 * 10. Page hero
 * -------------------------------------------------------------------------- */

.ws-page-hero {
	position: relative;
	padding: clamp(70px, 9vw, 130px) 0 clamp(50px, 7vw, 84px);
	background: var(--ws-navy);
	background-size: cover;
	background-position: center;
	color: #fff;
}

.ws-page-hero--tall {
	padding-block: clamp(110px, 13vw, 180px) clamp(80px, 10vw, 130px);
}

.ws-page-hero--image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(6, 16, 25, 0.94) 0%,
		rgba(6, 16, 25, 0.7) 58%,
		rgba(6, 16, 25, 0.3) 100%
	);
}

.ws-page-hero > .ws-container {
	position: relative;
	z-index: 2;
}

.ws-page-hero__title {
	max-width: 900px;
	margin: 0 0 20px;
	font-size: clamp(2.3rem, 5.6vw, 5rem);
	color: #fff;
}

.ws-page-hero__text {
	max-width: 640px;
	color: #d2dbe2;
	font-size: 1.05rem;
	line-height: 1.75;
}

.ws-page-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin: 28px 0 0;
}

.ws-page-hero__meta dt {
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ws-copper-soft);
}

.ws-page-hero__meta dd {
	margin: 5px 0 0;
	font-weight: 700;
}

.ws-page-hero__bar {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 190px));
	margin-top: 46px;
	margin-left: max(var(--ws-gutter), calc((100vw - var(--ws-container)) / 2));
	width: fit-content;
	background: #fff;
	color: var(--ws-navy);
}

.ws-page-hero__bar > div {
	padding: 22px 26px;
	border-left: 1px solid var(--ws-line);
}

.ws-page-hero__bar > div:first-child {
	border-left: 0;
}

.ws-page-hero__bar b {
	display: block;
	font-family: var(--ws-font-heading);
	font-size: 1.9rem;
	color: var(--ws-copper-text);
}

.ws-page-hero__bar span {
	display: block;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ws-breadcrumbs {
	margin-bottom: 18px;
	font-size: 0.76rem;
	color: rgba(255, 255, 255, 0.72);
}

.ws-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ws-breadcrumbs li + li::before {
	content: "/";
	margin-right: 6px;
	opacity: 0.5;
}

.ws-breadcrumbs a:hover {
	color: var(--ws-copper-soft);
}

/* -----------------------------------------------------------------------------
 * 11. Trust bar and figures
 * -------------------------------------------------------------------------- */

.ws-trust {
	background: #fff;
	border-bottom: 1px solid var(--ws-line);
}

.ws-trust__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.ws-trust__item {
	padding: 22px 20px;
	border-right: 1px solid var(--ws-line);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-align: center;
}

.ws-trust__item:last-child {
	border-right: 0;
}

.ws-figures--cream {
	background: var(--ws-cream);
}

.ws-figures--dark {
	background: var(--ws-navy);
	color: #fff;
}

.ws-figures__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	width: min(var(--ws-container), 100% - (var(--ws-gutter) * 2));
	margin-inline: auto;
}

.ws-figures__item {
	padding: 34px 28px;
	border-right: 1px solid rgba(12, 27, 41, 0.12);
}

.ws-figures--dark .ws-figures__item {
	border-right-color: var(--ws-line-dark);
}

.ws-figures__item:last-child {
	border-right: 0;
}

.ws-figures__item b {
	display: block;
	font-family: var(--ws-font-heading);
	font-size: 2.5rem;
	line-height: 1;
	color: var(--ws-navy);
}

.ws-figures--dark .ws-figures__item b {
	color: var(--ws-copper-soft);
}

.ws-figures__item span {
	display: block;
	margin-top: 8px;
	color: var(--ws-muted);
	font-size: 0.83rem;
}

.ws-figures--dark .ws-figures__item span {
	color: #b6c2cb;
}

/* -----------------------------------------------------------------------------
 * 12. Service cards
 * -------------------------------------------------------------------------- */

.ws-service-grid {
	display: grid;
	gap: 16px;
}

.ws-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ws-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ws-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ws-service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 250px;
	padding: 28px;
	background: #fff;
	border: 1px solid var(--ws-line);
	transition: transform 0.25s var(--ws-ease), border-color 0.25s var(--ws-ease),
		box-shadow 0.25s var(--ws-ease);
}

/*
 * The title link is stretched over the whole card, so the tap target is the
 * card rather than one line of text. The card's other link is decorative and
 * carries aria-hidden, so this adds no duplicate stop for keyboard users.
 */
.ws-service-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.ws-service-card:focus-within {
	border-color: var(--ws-copper);
}

.ws-service-card:hover {
	transform: translateY(-5px);
	border-color: var(--ws-copper);
	box-shadow: var(--ws-shadow-md);
}

.ws-service-card__number {
	font-family: var(--ws-font-heading);
	font-size: 1.9rem;
	font-weight: 600;
	line-height: 1;
	color: var(--ws-copper-text);
}

.ws-service-card__media {
	display: block;
	margin: -28px -28px 22px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.ws-service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ws-ease);
}

.ws-service-card:hover .ws-service-card__media img {
	transform: scale(1.04);
}

.ws-service-card__title {
	margin: 18px 0 10px;
	font-size: 1.25rem;
}

.ws-service-grid--image .ws-service-card__title {
	margin-top: 0;
}

.ws-service-card__text {
	margin: 0;
	color: var(--ws-muted);
	font-size: 0.88rem;
	line-height: 1.6;
}

.ws-service-card__link {
	margin-top: auto;
	padding: 18px 0 4px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ws-copper-text);
}

.ws-service-grid--compact .ws-service-card {
	min-height: 0;
	padding: 20px 24px;
}

.ws-service-row {
	padding: 18px 0;
	border-top: 1px solid var(--ws-line);
}

.ws-service-row__title {
	margin: 0 0 6px;
	font-size: 1.1rem;
}

.ws-service-row__text {
	margin: 0;
	color: var(--ws-muted);
	font-size: 0.86rem;
}

/* -----------------------------------------------------------------------------
 * 13. Feature cards and family panels
 * -------------------------------------------------------------------------- */

.ws-feature-cards {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	grid-auto-rows: 280px;
	gap: 16px;
}

.ws-feature-card {
	position: relative;
	overflow: hidden;
	background: var(--ws-navy);
}

.ws-feature-card--large {
	grid-row: span 2;
}

.ws-feature-card img,
.ws-feature-card picture {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ws-feature-card img {
	object-fit: cover;
	transition: transform 0.5s var(--ws-ease);
}

.ws-feature-card::after {
	content: "";
	position: absolute;
	inset: 28% 0 0;
	background: linear-gradient(transparent, rgba(7, 19, 29, 0.94));
}

.ws-feature-card:hover img {
	transform: scale(1.035);
}

.ws-feature-card__body {
	position: absolute;
	z-index: 2;
	left: 28px;
	right: 28px;
	bottom: 26px;
	color: #fff;
}

.ws-feature-card__eyebrow {
	display: block;
	margin-bottom: 8px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--ws-copper-soft);
}

.ws-feature-card__title {
	margin: 0 0 8px;
	font-size: clamp(1.4rem, 2.4vw, 2.4rem);
	color: #fff;
}

.ws-feature-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.ws-feature-card__text {
	max-width: 460px;
	margin: 0;
	color: #cfd8de;
	font-size: 0.9rem;
}

.ws-feature-card__link {
	display: inline-block;
	margin-top: 12px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ws-copper-soft);
}

.ws-families {
	background: var(--ws-cream);
}

.ws-family {
	display: grid;
	grid-template-columns: 1fr 1fr;
	scroll-margin-top: calc(var(--ws-header-h) + 60px);
}

.ws-family--reverse .ws-family__media {
	order: 2;
}

.ws-family__media {
	position: relative;
	min-height: 480px;
	overflow: hidden;
}

.ws-family__media img,
.ws-family__media picture {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ws-family__media img {
	object-fit: cover;
}

.ws-family__number {
	position: absolute;
	top: 28px;
	left: 28px;
	z-index: 2;
	padding: 12px 16px;
	background: var(--ws-copper);
	color: #fff;
	font-family: var(--ws-font-heading);
	font-size: 1.2rem;
}

.ws-family__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(44px, 5vw, 80px) clamp(28px, 5vw, 80px);
}

.ws-family__title {
	font-size: clamp(1.9rem, 3.2vw, 3.2rem);
	margin-bottom: 0.5em;
}

.ws-family__text {
	color: var(--ws-muted);
	line-height: 1.75;
}

.ws-family__subtitle {
	margin: 26px 0 12px;
	font-size: 0.72rem;
	font-family: var(--ws-font-body);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ws-copper-text);
}

.ws-family__services {
	columns: 2;
	column-gap: 28px;
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
}

.ws-family__services li {
	break-inside: avoid;
	border-top: 1px solid rgba(12, 27, 41, 0.14);
	padding: 9px 0 9px 20px;
	position: relative;
	font-size: 0.82rem;
	font-weight: 700;
}

.ws-family__services li::before {
	content: "+";
	position: absolute;
	left: 0;
	color: var(--ws-copper-text);
}

.ws-family__services a:hover {
	color: var(--ws-copper-text);
}

.ws-family__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-bottom: 28px;
}

.ws-family__copy .ws-button {
	align-self: flex-start;
}

/* -----------------------------------------------------------------------------
 * 14. Lists
 * -------------------------------------------------------------------------- */

.ws-checklist,
.ws-bulletlist,
.ws-linklist {
	margin: 0 0 1.4em;
	padding: 0;
	list-style: none;
}

.ws-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 11px 0;
	border-top: 1px solid var(--ws-line);
	font-size: 0.93rem;
}

.ws-checklist--two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 32px;
}

.ws-checklist svg {
	flex: 0 0 auto;
	margin-top: 3px;
	color: var(--ws-copper-text);
}

.ws-section--dark .ws-checklist li,
.ws-section--navy .ws-checklist li,
.ws-split--navy .ws-checklist li {
	border-top-color: var(--ws-line-dark);
}

.ws-bulletlist li {
	position: relative;
	padding: 10px 0 10px 20px;
	border-top: 1px solid var(--ws-line);
	font-size: 0.93rem;
}

.ws-bulletlist li::before {
	content: "";
	position: absolute;
	top: 19px;
	left: 0;
	width: 8px;
	height: 2px;
	background: var(--ws-copper);
}

.ws-linklist li {
	border-top: 1px solid var(--ws-line);
}

.ws-linklist a {
	display: block;
	padding: 13px 0;
	font-weight: 700;
}

.ws-linklist a:hover {
	color: var(--ws-copper-text);
}

/* -----------------------------------------------------------------------------
 * 15. Split panel
 * -------------------------------------------------------------------------- */

.ws-split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	background: var(--ws-cream);
}

.ws-split--paper {
	background: var(--ws-paper);
}

.ws-split--navy {
	background: var(--ws-navy);
	color: #dfe6eb;
}

.ws-split--navy .ws-split__title {
	color: #fff;
}

.ws-split--reverse .ws-split__media {
	order: 2;
}

.ws-split__media {
	position: relative;
	min-height: 460px;
	overflow: hidden;
}

.ws-split__media img,
.ws-split__media picture {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ws-split__media img {
	object-fit: cover;
}

.ws-split__note {
	position: absolute;
	left: 20px;
	bottom: 20px;
	z-index: 2;
	padding: 7px 12px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--ws-navy);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ws-split__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(44px, 5vw, 78px) clamp(28px, 5vw, 72px);
}

.ws-split__title {
	font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}

.ws-split__text {
	color: var(--ws-muted);
	line-height: 1.8;
}

.ws-split--navy .ws-split__text {
	color: #b6c2cb;
}

.ws-split__copy .ws-button {
	align-self: flex-start;
	margin-top: 8px;
}

/* -----------------------------------------------------------------------------
 * 16. Steps
 * -------------------------------------------------------------------------- */

.ws-steps--list {
	counter-reset: ws-step;
}

.ws-steps__item {
	display: flex;
	gap: 24px;
	padding: 22px 0;
	border-top: 1px solid var(--ws-line);
}

.ws-section--dark .ws-steps__item,
.ws-section--navy .ws-steps__item {
	border-top-color: var(--ws-line-dark);
}

.ws-steps__number {
	flex: 0 0 44px;
	font-family: var(--ws-font-heading);
	font-size: 1.45rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--ws-copper-text);
}

.ws-steps__title {
	margin: 0 0 6px;
	font-size: 1.2rem;
}

.ws-steps__text {
	margin: 0;
	color: var(--ws-muted);
	font-size: 0.92rem;
}

.ws-section--dark .ws-steps__text,
.ws-section--navy .ws-steps__text {
	color: #b6c2cb;
}

.ws-steps--row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0;
}

.ws-steps--row .ws-steps__item {
	flex-direction: column;
	gap: 12px;
	padding: 28px 24px;
	border-right: 1px solid var(--ws-line);
}

.ws-steps--row .ws-steps__item:last-child {
	border-right: 0;
}

/* -----------------------------------------------------------------------------
 * 17. Jump bar
 * -------------------------------------------------------------------------- */

.ws-jump {
	background: var(--ws-navy);
	color: #fff;
	box-shadow: 0 10px 25px rgba(7, 17, 26, 0.15);
}

.ws-jump--sticky {
	position: sticky;
	top: 0;
	z-index: 30;
}

.ws-header--sticky ~ * .ws-jump--sticky,
.waystar-sticky-header .ws-jump--sticky {
	top: var(--ws-header-h);
}

.ws-jump__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 58px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.ws-jump__label {
	flex: 0 0 auto;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ws-copper-soft);
}

.ws-jump__list {
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ws-jump__list a {
	display: block;
	padding: 6px 0;
	white-space: nowrap;
	font-size: 0.79rem;
	font-weight: 800;
}

.ws-jump__list a:hover {
	color: var(--ws-copper-soft);
}

/* -----------------------------------------------------------------------------
 * 18. Projects
 * -------------------------------------------------------------------------- */

.ws-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 34px;
}

.ws-filter {
	padding: 11px 20px;
	border: 1px solid var(--ws-line);
	background: #fff;
	color: var(--ws-ink);
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	cursor: pointer;
	transition: background 0.2s var(--ws-ease), color 0.2s var(--ws-ease),
		border-color 0.2s var(--ws-ease);
}

.ws-filter:hover {
	border-color: var(--ws-copper);
	color: var(--ws-copper-text);
}

.ws-filter.is-active {
	background: var(--ws-navy);
	border-color: var(--ws-navy);
	color: #fff;
}

.ws-filters__empty {
	padding: 32px 0;
	color: var(--ws-muted);
}

.ws-projects {
	display: grid;
	gap: 16px;
}

.ws-projects--feature > .ws-project:first-child {
	grid-column: span 2;
}

.ws-project {
	position: relative;
	overflow: hidden;
	background: var(--ws-navy);
}

.ws-project__link {
	display: block;
	height: 100%;
	min-height: 380px;
}

.ws-project__image,
.ws-project picture {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ws-project__image {
	object-fit: cover;
	transition: transform 0.5s var(--ws-ease);
}

.ws-project::after {
	content: "";
	position: absolute;
	inset: 36% 0 0;
	background: linear-gradient(transparent, rgba(7, 18, 27, 0.93));
	pointer-events: none;
}

.ws-project:hover .ws-project__image {
	transform: scale(1.04);
}

.ws-project__body {
	position: absolute;
	z-index: 2;
	left: 26px;
	right: 26px;
	bottom: 24px;
	color: #fff;
}

.ws-project__category {
	display: block;
	margin-bottom: 6px;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ws-copper-soft);
}

.ws-project__title {
	margin: 0;
	font-size: clamp(1.3rem, 2vw, 1.7rem);
	color: #fff;
}

.ws-project__location {
	display: block;
	margin-top: 6px;
	font-size: 0.8rem;
	color: #c3ced6;
}

.ws-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}

.ws-gallery--wide {
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.ws-gallery__item {
	margin: 0;
}

.ws-gallery__item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ws-gallery__item figcaption {
	margin-top: 8px;
	color: var(--ws-muted);
	font-size: 0.8rem;
}

/* Videos are portrait clips filmed on a phone, so the cards match that ratio. */
.ws-videos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
	gap: 20px;
	justify-content: center;
}

.ws-videos--single {
	justify-content: start;
}

.ws-video {
	margin: 0;
	background: rgba(255, 255, 255, 0.05);
	padding: 12px;
}

.ws-video__player {
	display: block;
	width: 100%;
	aspect-ratio: 9 / 16;
	background: #000;
	object-fit: cover;
}

.ws-video__caption {
	padding: 12px 4px 2px;
	font-size: 0.85rem;
}

.ws-video__caption strong {
	display: block;
}

.ws-video__caption span {
	display: block;
	margin-top: 4px;
	color: #b6c2cb;
	font-size: 0.78rem;
}

.ws-embed iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
}

/* -----------------------------------------------------------------------------
 * 19. Detail layouts
 * -------------------------------------------------------------------------- */

.ws-detail,
.ws-case {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: clamp(36px, 5vw, 72px);
	align-items: start;
}

.ws-case {
	grid-template-columns: minmax(0, 1fr) 320px;
}

.ws-detail__aside,
.ws-case__aside {
	position: sticky;
	top: calc(var(--ws-header-h) + 24px);
}

.ws-detail__aside-title {
	margin-bottom: 14px;
	font-size: 1.1rem;
}

.ws-detail__menu {
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.ws-detail__menu li {
	border-top: 1px solid var(--ws-line);
}

.ws-detail__menu a {
	display: block;
	padding: 12px 0;
	font-size: 0.87rem;
	font-weight: 700;
}

.ws-detail__menu a:hover {
	color: var(--ws-copper-text);
}

.ws-detail__card,
.ws-case__panel {
	padding: 28px;
	background: var(--ws-navy);
	color: #d7e0e6;
}

.ws-case__panel {
	margin-bottom: 20px;
	background: var(--ws-cream);
	color: var(--ws-ink);
}

.ws-detail__card h3,
.ws-case__panel-title {
	margin: 0 0 12px;
	font-size: 1.2rem;
	color: #fff;
}

.ws-case__panel-title {
	color: var(--ws-navy);
}

.ws-detail__card p {
	font-size: 0.88rem;
}

.ws-detail__card-line {
	margin-bottom: 10px;
}

.ws-detail__card .ws-button {
	margin-top: 16px;
}

.ws-detail__block {
	margin-top: 46px;
}

.ws-detail__title {
	margin-bottom: 18px;
	font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

/* -----------------------------------------------------------------------------
 * 20. FAQ
 * -------------------------------------------------------------------------- */

.ws-faq {
	max-width: 900px;
}

.ws-faq__item {
	border-top: 1px solid var(--ws-line);
}

.ws-faq__item:last-child {
	border-bottom: 1px solid var(--ws-line);
}

.ws-section--dark .ws-faq__item,
.ws-section--navy .ws-faq__item {
	border-color: var(--ws-line-dark);
}

.ws-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
	font-size: 1.02rem;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.ws-faq__question::-webkit-details-marker {
	display: none;
}

.ws-faq__question svg {
	flex: 0 0 auto;
	color: var(--ws-copper-text);
	transition: transform 0.25s var(--ws-ease);
}

.ws-faq__item[open] .ws-faq__question svg {
	transform: rotate(180deg);
}

.ws-faq__answer {
	padding-bottom: 22px;
	max-width: 760px;
	color: var(--ws-muted);
	line-height: 1.8;
}

.ws-section--dark .ws-faq__answer,
.ws-section--navy .ws-faq__answer {
	color: #b6c2cb;
}

/* -----------------------------------------------------------------------------
 * 21. Quotes
 * -------------------------------------------------------------------------- */

.ws-quotes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}

.ws-quote {
	margin: 0;
	padding: 30px;
	background: #fff;
	border: 1px solid var(--ws-line);
}

.ws-quote__text {
	margin: 14px 0 0;
	font-size: 1rem;
	line-height: 1.75;
}

.ws-quote__text p {
	margin: 0;
}

.ws-quote__cite {
	margin-top: 16px;
	font-size: 0.82rem;
	color: var(--ws-muted);
}

.ws-quote__cite strong {
	display: block;
	color: var(--ws-ink);
}

/* -----------------------------------------------------------------------------
 * 22. Estimate planner
 * -------------------------------------------------------------------------- */

.ws-planner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(36px, 5vw, 70px);
	align-items: start;
}

.ws-planner__title {
	font-size: clamp(1.9rem, 3.6vw, 3.2rem);
	color: #fff;
}

.ws-section--cream .ws-planner__title,
.ws-section--flush .ws-planner__title {
	color: var(--ws-ink);
}

.ws-planner__text {
	line-height: 1.8;
}

.ws-planner__disclaimer {
	margin-top: 18px;
	padding: 14px 18px;
	border-left: 3px solid var(--ws-copper-soft);
	background: rgba(255, 255, 255, 0.07);
	font-size: 0.82rem;
	line-height: 1.6;
}

.ws-planner__form {
	padding: clamp(28px, 4vw, 40px);
	background: #fff;
	color: var(--ws-ink);
}

.ws-planner__field {
	margin: 0 0 16px;
}

.ws-planner__result {
	margin: 22px 0;
	padding: 22px;
	background: var(--ws-cream);
}

.ws-planner__result-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ws-muted);
}

.ws-planner__result-value {
	display: block;
	margin-top: 8px;
	font-family: var(--ws-font-heading);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 600;
	color: var(--ws-navy);
}

.ws-planner__note {
	margin: 0 0 20px;
	color: var(--ws-muted);
	font-size: 0.76rem;
	line-height: 1.6;
}

/* -----------------------------------------------------------------------------
 * 23. Forms
 * -------------------------------------------------------------------------- */

label {
	display: block;
	margin-bottom: 7px;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="password"],
input[type="date"],
select,
textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid var(--ws-line);
	border-radius: var(--ws-radius);
	background: #fff;
	color: var(--ws-ink);
	font-family: inherit;
	font-size: 0.94rem;
	transition: border-color 0.2s var(--ws-ease);
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--ws-copper);
}

textarea {
	min-height: 130px;
	resize: vertical;
}

select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2365727c'%3E%3Cpath d='M7.4 9.6L12 14.2l4.6-4.6L18 11l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 18px;
	padding-right: 40px;
}

.ws-form {
	padding: clamp(26px, 4vw, 40px);
	background: #fff;
	border: 1px solid var(--ws-line);
}

.ws-form__title {
	margin: 0 0 10px;
	font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.ws-form__intro {
	margin-bottom: 24px;
	color: var(--ws-muted);
}

.ws-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.ws-form__field {
	margin: 0;
}

.ws-form__field--wide {
	grid-column: 1 / -1;
}

.ws-form__trap {
	position: absolute !important;
	left: -9999px;
}

.ws-form__hint {
	display: block;
	margin-top: 6px;
	color: var(--ws-muted);
	font-size: 0.76rem;
}

.ws-form__consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	/* Keeps the clickable row comfortable even when the wording fits one line. */
	padding: 12px 0;
	min-height: 44px;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	cursor: pointer;
}

.ws-form__consent input {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 1px;
}

/* Native file inputs are short by default, so give them a comfortable height. */
input[type="file"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px dashed var(--ws-line);
	border-radius: var(--ws-radius);
	background: var(--ws-paper);
	font-family: inherit;
	font-size: 0.88rem;
	cursor: pointer;
}

input[type="file"]:focus {
	border-color: var(--ws-copper);
}

.ws-required {
	color: #a8342b;
}

.ws-form__submit {
	margin-top: 24px;
}

.ws-form__status {
	margin: 16px 0 0;
	font-size: 0.9rem;
	font-weight: 700;
}

.ws-form__status.is-error {
	color: #a8342b;
}

.ws-form__status.is-success {
	color: #2f7a4f;
}

.ws-form.is-sending {
	opacity: 0.7;
	pointer-events: none;
}

.ws-search {
	display: flex;
	gap: 8px;
	max-width: 480px;
}

.ws-search__submit {
	flex: 0 0 auto;
	width: 52px;
	border: 0;
	background: var(--ws-navy);
	color: #fff;
	cursor: pointer;
}

/* -----------------------------------------------------------------------------
 * 24. Contact card and map
 * -------------------------------------------------------------------------- */

.ws-contact-card--panel {
	padding: clamp(28px, 4vw, 42px);
	background: var(--ws-navy);
	color: #d7e0e6;
}

.ws-contact-card__title {
	margin: 0 0 20px;
	font-size: 1.5rem;
}

.ws-contact-card--panel .ws-contact-card__title {
	color: #fff;
}

.ws-contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ws-contact-list__item {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-top: 1px solid var(--ws-line);
}

.ws-contact-card--panel .ws-contact-list__item {
	border-top-color: var(--ws-line-dark);
}

.ws-contact-list__item svg {
	flex: 0 0 auto;
	margin-top: 3px;
	color: var(--ws-copper-text);
}

.ws-contact__label {
	display: block;
	margin-bottom: 4px;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ws-copper-text);
}

.ws-contact-card--panel .ws-contact__label,
.ws-footer .ws-contact__label {
	color: var(--ws-copper-soft);
}

.ws-contact__value {
	display: block;
	font-size: 0.92rem;
}

a.ws-contact__value:hover {
	color: var(--ws-copper-text);
}

.ws-socials {
	display: flex;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.ws-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid currentColor;
	opacity: 0.75;
	transition: opacity 0.2s var(--ws-ease), background 0.2s var(--ws-ease),
		color 0.2s var(--ws-ease);
}

.ws-socials a:hover {
	opacity: 1;
	background: var(--ws-copper);
	border-color: var(--ws-copper);
	color: #fff;
}

.ws-map {
	position: relative;
	background: var(--ws-cream);
	border: 1px solid var(--ws-line);
}

.ws-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	border: 0;
}

.ws-map__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: inherit;
	padding: 40px 24px;
	text-align: center;
	color: var(--ws-muted);
}

.ws-map__placeholder svg {
	color: var(--ws-copper-text);
}

.ws-map__label {
	margin: 0;
	font-family: var(--ws-font-heading);
	font-size: 1.1rem;
	text-transform: uppercase;
	color: var(--ws-navy);
}

.ws-map__hint {
	margin: 0;
	font-size: 0.78rem;
	font-style: italic;
}

/* -----------------------------------------------------------------------------
 * 25. Call to action band
 * -------------------------------------------------------------------------- */

.ws-cta {
	padding: clamp(44px, 6vw, 70px) 0;
	color: #fff;
}

/* Navy on the brand copper reads clearly at every text size. */
.ws-cta--copper,
.ws-cta--copper .ws-cta__title {
	color: var(--ws-navy);
}

.ws-cta--copper {
	background: var(--ws-copper);
}

.ws-cta--navy {
	background: var(--ws-navy);
}

.ws-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.ws-cta--copper .ws-eyebrow {
	color: var(--ws-navy);
	opacity: 0.78;
}

.ws-cta__title {
	margin: 0;
	font-size: clamp(1.9rem, 4vw, 3.4rem);
	color: #fff;
}

/* -----------------------------------------------------------------------------
 * 26. Footer
 * -------------------------------------------------------------------------- */

.ws-footer {
	padding: clamp(50px, 7vw, 76px) 0 24px;
	background: #07131d;
	color: #c1ccd4;
	font-size: 0.9rem;
}

.ws-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 0.8fr 1fr 1.1fr;
	gap: clamp(28px, 4vw, 56px);
}

.ws-footer__brand .ws-logo__img,
.ws-footer__brand .custom-logo {
	max-width: 250px;
	max-height: 60px;
}

.ws-footer__brand .custom-logo {
	filter: brightness(0) invert(1);
}

.ws-footer__intro {
	margin-top: 22px;
	line-height: 1.75;
}

.ws-footer__note {
	color: #8fa0ad;
	line-height: 1.7;
	font-size: 0.85rem;
}

.ws-footer__hint {
	color: #8fa0ad;
	font-size: 0.8rem;
}

.ws-footer__title {
	margin: 0 0 16px;
	font-size: 0.95rem;
	color: #fff;
	letter-spacing: 0.06em;
}

.ws-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ws-footer__menu li {
	margin-bottom: 4px;
}

.ws-footer__menu a {
	display: inline-block;
	padding: 5px 0;
}

.ws-footer__menu a:hover,
.ws-footer a:hover {
	color: var(--ws-copper-soft);
}

.ws-footer address {
	margin-bottom: 18px;
	line-height: 1.7;
}

.ws-footer__contact {
	margin-bottom: 14px;
}

.ws-footer__contact .ws-contact__value {
	font-size: 0.88rem;
}

.ws-footer__col--contact .ws-button {
	margin-top: 8px;
}

.ws-footer__widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
	margin-top: 44px;
	padding-top: 32px;
	border-top: 1px solid var(--ws-line-dark);
}

.ws-copyright {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 44px;
	padding-top: 22px;
	border-top: 1px solid var(--ws-line-dark);
	font-size: 0.76rem;
	color: #8fa0ad;
}

.ws-copyright__text {
	margin: 0;
}

.ws-copyright__links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ws-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 45;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	background: var(--ws-navy);
	color: #fff;
	box-shadow: var(--ws-shadow-md);
	transition: background 0.2s var(--ws-ease), transform 0.2s var(--ws-ease);
}

.ws-to-top:hover {
	background: var(--ws-copper);
	transform: translateY(-3px);
}

/* -----------------------------------------------------------------------------
 * 27. Blog and misc content
 * -------------------------------------------------------------------------- */

.ws-postlist {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 26px;
}

.ws-postcard {
	background: #fff;
	border: 1px solid var(--ws-line);
}

.ws-postcard__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ws-postcard__body {
	padding: 24px;
}

.ws-postcard__date {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ws-copper-text);
}

.ws-postcard__title {
	margin: 10px 0;
	font-size: 1.3rem;
}

.ws-postcard__text {
	margin: 0;
	color: var(--ws-muted);
	font-size: 0.9rem;
}

.ws-results {
	display: grid;
	gap: 4px;
}

.ws-result {
	position: relative;
	padding: 22px 0;
	border-top: 1px solid var(--ws-line);
}

.ws-result__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.ws-result__type {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ws-copper-text);
}

.ws-result__title {
	margin: 8px 0;
	font-size: 1.4rem;
}

.ws-result__text {
	margin: 0;
	color: var(--ws-muted);
}

.ws-notfound {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 70px);
}

.ws-entry > * + * {
	margin-top: 1.1em;
}

.ws-entry h2 {
	margin-top: 1.6em;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.ws-entry h3 {
	margin-top: 1.4em;
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.ws-entry img,
.ws-entry figure {
	margin-block: 1.6em;
}

.ws-entry blockquote {
	margin: 1.8em 0;
	padding: 4px 0 4px 26px;
	border-left: 3px solid var(--ws-copper);
	font-size: 1.06rem;
}

.ws-entry table {
	width: 100%;
	border-collapse: collapse;
}

.ws-entry th,
.ws-entry td {
	padding: 12px;
	border: 1px solid var(--ws-line);
	text-align: left;
}

.ws-pagination {
	margin-top: 46px;
}

.ws-pagination .nav-links,
.wp-block-query-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ws-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border: 1px solid var(--ws-line);
	background: #fff;
	font-weight: 800;
	font-size: 0.85rem;
}

.ws-pagination .page-numbers.current,
.ws-pagination .page-numbers:hover {
	background: var(--ws-navy);
	border-color: var(--ws-navy);
	color: #fff;
}

.ws-post-nav {
	padding: 40px 0;
	border-top: 1px solid var(--ws-line);
}

.ws-post-nav__inner {
	display: flex;
	justify-content: space-between;
	gap: 26px;
	flex-wrap: wrap;
}

.ws-post-nav__link span {
	display: block;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ws-copper-text);
}

.ws-post-nav__link strong {
	display: block;
	margin-top: 6px;
	font-family: var(--ws-font-heading);
	font-size: 1.1rem;
	text-transform: uppercase;
}

.ws-post-nav__link--next {
	text-align: right;
	margin-left: auto;
}

.widget {
	margin-bottom: 32px;
}

.widget-title {
	margin-bottom: 14px;
	font-size: 1rem;
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget li {
	padding: 8px 0;
	border-top: 1px solid var(--ws-line);
}

.ws-editor-notice {
	padding: 14px 18px;
	background: #fff6e8;
	border: 1px dashed var(--ws-copper);
	color: #7a4f18;
	font-size: 0.85rem;
}

/* -----------------------------------------------------------------------------
 * 28. Responsive
 * -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
	.ws-hero__arrows {
		left: var(--ws-gutter);
		transform: none;
	}

	.ws-hero__dots,
	.ws-hero__playpause {
		right: var(--ws-gutter);
	}

	.ws-page-hero__bar {
		margin-left: var(--ws-gutter);
	}
}

@media (max-width: 1024px) {
	.ws-cols-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ws-detail,
	.ws-case {
		grid-template-columns: 1fr;
	}

	.ws-detail__aside,
	.ws-case__aside {
		position: static;
	}

	.ws-layout--sidebar {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 960px) {
	:root {
		--ws-header-h: 70px;
	}

	.ws-topbar {
		display: none;
	}

	.ws-header__burger {
		display: inline-flex;
	}

	/* The whole navigation becomes an off canvas panel. */
	.ws-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 60;
		display: block;
		width: min(400px, 88vw);
		margin: 0;
		padding: 84px 26px 40px;
		background: #fff;
		box-shadow: -20px 0 50px rgba(7, 17, 26, 0.24);
		overflow-y: auto;
		overscroll-behavior: contain;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform 0.3s var(--ws-ease), visibility 0.3s;
	}

	.ws-nav.is-open {
		transform: none;
		visibility: visible;
	}

	.ws-nav__list {
		display: block;
	}

	.ws-nav__item {
		position: relative;
		border-bottom: 1px solid var(--ws-line);
	}

	.ws-nav__item--top > .ws-nav__link {
		display: block;
		padding: 15px 44px 15px 0;
		font-size: 1rem;
	}

	.ws-nav__item--parent > .ws-nav__toggle {
		position: absolute;
		top: 8px;
		right: 0;
		width: 42px;
		height: 42px;
		border: 1px solid var(--ws-line);
	}

	/* Accordion behaviour: closed by default, opened by the toggle only. */
	.ws-submenu,
	.ws-mega {
		position: static;
		width: auto;
		max-height: 0;
		padding: 0;
		border-top: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		overflow: hidden;
		transition: max-height 0.3s var(--ws-ease);
	}

	.ws-nav__item--parent:hover > .ws-submenu,
	.ws-nav__item--parent:focus-within > .ws-submenu,
	.ws-nav__item--mega:hover > .ws-mega,
	.ws-nav__item--mega:focus-within > .ws-mega {
		max-height: 0;
	}

	.ws-nav__item--parent.is-open > .ws-submenu,
	.ws-nav__item--mega.is-open > .ws-mega {
		max-height: 2400px;
	}

	.ws-mega__inner {
		display: block;
		padding: 0 0 14px;
		/* The off canvas panel does the scrolling on mobile, not the mega inner. */
		max-height: none;
		overflow: visible;
	}

	.ws-mega__col + .ws-mega__col {
		margin-top: 18px;
	}

	.ws-submenu__link {
		padding: 10px 0 10px 14px;
	}

	.ws-mega__link {
		padding: 8px 0 8px 14px;
	}

	.ws-nav__cta {
		margin-top: 24px;
	}

	.ws-nav__cta .ws-button {
		width: 100%;
	}

	.ws-header__inner {
		gap: 12px;
	}

	.ws-heading,
	.ws-two-col,
	.ws-two-col--wide,
	.ws-planner,
	.ws-notfound,
	.ws-family,
	.ws-split {
		grid-template-columns: 1fr;
	}

	.ws-family--reverse .ws-family__media,
	.ws-split--reverse .ws-split__media {
		order: 0;
	}

	.ws-family__media,
	.ws-split__media {
		min-height: 340px;
	}

	.ws-feature-cards {
		grid-template-columns: 1fr;
		grid-auto-rows: 320px;
	}

	.ws-feature-card--large {
		grid-row: auto;
	}

	.ws-projects--feature > .ws-project:first-child {
		grid-column: auto;
	}

	.ws-jump--sticky {
		top: var(--ws-header-h);
	}

	.ws-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.ws-page-hero__bar {
		grid-template-columns: repeat(3, 1fr);
		width: 100%;
		margin-left: 0;
	}

	.ws-hero__playpause {
		bottom: 80px;
	}
}

@media (max-width: 720px) {
	.ws-cols-3,
	.ws-cols-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ws-checklist--two,
	.ws-family__columns {
		grid-template-columns: 1fr;
	}

	.ws-family__services {
		columns: 1;
	}

	.ws-form__grid {
		grid-template-columns: 1fr;
	}

	.ws-trust__item {
		border-right: 0;
		border-bottom: 1px solid var(--ws-line);
	}
}

@media (max-width: 560px) {
	:root {
		--ws-gutter: 18px;
	}

	.ws-cols-2,
	.ws-cols-3,
	.ws-cols-4 {
		grid-template-columns: 1fr;
	}

	.ws-hero {
		height: auto;
		min-height: 620px;
	}

	.ws-hero__copy {
		padding-block: 110px 130px;
	}

	.ws-hero__title {
		font-size: 2.5rem;
	}

	.ws-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.ws-actions .ws-button {
		width: 100%;
	}

	.ws-hero__arrows {
		bottom: 26px;
	}

	.ws-hero__dots {
		bottom: 70px;
		right: var(--ws-gutter);
	}

	.ws-hero__playpause {
		top: 24px;
		bottom: auto;
	}

	.ws-page-hero__bar {
		grid-template-columns: 1fr;
	}

	.ws-page-hero__bar > div {
		border-left: 0;
		border-top: 1px solid var(--ws-line);
	}

	.ws-page-hero__bar > div:first-child {
		border-top: 0;
	}

	.ws-figures__item,
	.ws-steps--row .ws-steps__item {
		border-right: 0;
		border-bottom: 1px solid var(--ws-line);
	}

	.ws-project__link {
		min-height: 320px;
	}

	.ws-cta__inner {
		display: block;
	}

	.ws-cta .ws-button {
		margin-top: 24px;
	}

	.ws-footer__grid {
		grid-template-columns: 1fr;
	}

	.ws-copyright {
		display: block;
	}

	.ws-copyright__links {
		margin-top: 12px;
	}

	.ws-videos {
		grid-template-columns: 1fr;
	}

	.ws-post-nav__link--next {
		text-align: left;
		margin-left: 0;
	}
}

/* -----------------------------------------------------------------------------
 * 29. Motion and print
 * -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}

	.ws-button:hover,
	.ws-service-card:hover,
	.ws-to-top:hover {
		transform: none;
	}

	.ws-project:hover .ws-project__image,
	.ws-feature-card:hover img {
		transform: none;
	}
}

@media print {
	.ws-header,
	.ws-topbar,
	.ws-nav,
	.ws-hero__arrows,
	.ws-hero__dots,
	.ws-hero__playpause,
	.ws-to-top,
	.ws-cta,
	.ws-filters {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}
}
