/*
 * Landing page styles — Water Conservation Network.
 *
 * Loaded after style.css (the untouched _s base). Design source: Figma
 * "Water Conservation Network Landing Page", node 3:2, 1440px reference frame.
 * Desktop comp only; responsive behaviour below 1200px is ours.
 *
 * Display stack: Mortend Bold is licensed and not committed with the theme;
 * inc/landing-page.php declares its @font-face only when
 * assets/fonts/mortend-bold.woff2 exists. Until then Bruno Ace renders — the
 * same squared, rounded-corner extended skeleton, but it only ships at 400, so
 * a 0.06em text-stroke in the text colour (--display-stroke) brings it up to
 * Mortend Bold's weight; the Mortend injection zeroes the stroke. Widths land
 * within ~3% of the comp, so sizes and line breaks hold under either face.
 * Mortend is caps-only in the comp, so display elements are uppercased.
 */

/* --------------------------------------------------------------------------
 * Fonts + tokens
 * ------------------------------------------------------------------------ */

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

/* Declared across 400–800 so the 700 requests below map straight to this
   file instead of triggering synthetic bold on top of the stroke. */
@font-face {
	font-family: "Bruno Ace";
	src: url("../fonts/bruno-ace-400-latin.woff2") format("woff2");
	font-weight: 400 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--c-navy: #073066;
	--c-navy-hover: #05254f;
	--c-navy-80: rgba(7, 48, 102, 0.8);
	--c-red: #c61924;
	--c-red-hover: #a5141e;
	--c-white: #fff;
	--c-white-88: rgba(255, 255, 255, 0.88);
	--c-white-85: rgba(255, 255, 255, 0.85);
	--c-white-55: rgba(255, 255, 255, 0.55);
	--c-text: #29303d;
	--c-muted: #5c6675;
	--c-fineprint: #6b7585;
	--c-placeholder: #788291;
	--c-field: #f6f8fa;
	--c-field-border: #d6dee5;
	--c-check-border: #adb8c4;
	--font-display: "Mortend", "Bruno Ace", "Arial Black", sans-serif;
	--display-stroke: 0.06em;
	--font-body: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
	--pad-x: clamp(20px, 6.94vw, 100px);
	--radius: 4px;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.5;
	color: var(--c-text);
	background: var(--c-white);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
 * Shared
 * ------------------------------------------------------------------------ */

/*
 * Link colors. The _s base sets royalblue / purple-when-visited, and its
 * `a:visited` selector (type + pseudo-class) outranks any single class, so
 * every branded link and button declares :visited explicitly.
 */
a {
	color: var(--c-red);
}

a:visited {
	color: var(--c-red);
}

a:hover,
a:focus,
a:active {
	color: var(--c-red-hover);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-body);
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: var(--radius);
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.button--red {
	background: var(--c-red);
	color: var(--c-white);
}

a.button--red:visited {
	color: var(--c-white);
}

.button--red:hover,
.button--red:focus,
.button--red:active {
	background: var(--c-red-hover);
	color: var(--c-white);
}

.button--outline {
	background: transparent;
	color: var(--c-white);
	border: 1.5px solid var(--c-white-55);
}

a.button--outline:visited {
	color: var(--c-white);
}

.button--outline:hover,
.button--outline:focus,
.button--outline:active {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--c-white);
	color: var(--c-white);
}

.button:focus-visible {
	outline: 2px solid var(--c-white);
	outline-offset: 3px;
}

/* Short red rule under the hero headline (52×3 in the comp). */
.accent-rule {
	display: block;
	width: 52px;
	height: 3px;
	background: var(--c-red);
}

/* --------------------------------------------------------------------------
 * Header / nav
 * ------------------------------------------------------------------------ */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: var(--c-white);
	padding: 22px var(--pad-x);
	/* Barely-there edge so the pinned bar reads against the white story section. */
	box-shadow: 0 1px 0 rgba(7, 48, 102, 0.08), 0 6px 20px rgba(7, 48, 102, 0.06);
}

/* Sit below the WP admin bar when logged in (32px, 46px under 783px). */
.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

/* In-page anchors (header + hero CTAs → the form) stop clear of the pinned header. */
.signup,
#add-your-name {
	scroll-margin-top: var(--header-offset, 110px);
}

:root {
	--header-offset: 110px;
}

.site-branding .custom-logo-link {
	display: block;
	line-height: 0;
}

.site-branding .custom-logo {
	display: block;
	height: 58px;
	width: auto;
}

/* Keep the text branding for screen readers; the logo carries it visually. */
.site-branding .site-title,
.site-branding .site-description {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

/* One-page site: no menu. Remove when the site grows pages. */
.main-navigation {
	display: none;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-shrink: 0;
}

.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
	color: var(--c-navy);
	text-decoration: none;
	white-space: nowrap;
}

.header-phone:visited {
	color: var(--c-navy);
}

.header-phone:hover,
.header-phone:focus {
	color: var(--c-red);
}

.header-phone .icon-phone {
	display: block;
	width: 18px;
	height: 18px;
	color: var(--c-red);
	flex-shrink: 0;
}

.donate-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 26px;
	background: var(--c-red);
	color: var(--c-white);
	font-size: 13px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.0615em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	border-radius: var(--radius);
	transition: background-color 0.15s ease;
}

a.donate-button:visited {
	color: var(--c-white);
}

.donate-button:hover,
.donate-button:focus {
	background: var(--c-red-hover);
	color: var(--c-white);
}

.donate-button:focus-visible {
	outline: 2px solid var(--c-navy);
	outline-offset: 2px;
}

/* --------------------------------------------------------------------------
 * Announcement bar (Site Settings, off by default)
 * ------------------------------------------------------------------------ */

.announcement-bar {
	display: block;
	background: var(--c-red);
	color: var(--c-white);
	text-align: center;
	padding: 10px 16px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
}

a.announcement-bar:visited,
a.announcement-bar:hover {
	color: var(--c-white);
}

/* --------------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------------ */

.hero {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--c-navy);
	color: var(--c-white);
	text-align: center;
	padding: clamp(64px, 7.22vw, 104px) var(--pad-x) clamp(72px, 7.78vw, 112px);
	overflow: hidden;
}

/* Coastline photo blended into the navy, then a gradient deepening the
   lower-right corner — both straight from the comp. */
.hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	/* The z-index makes this wrapper its own stacking context, so the photo's
	   soft-light blend only sees THIS box as its backdrop — without a fill here
	   it blends against transparency and composites as a plain photo (which is
	   what shipped first: +30 L on the navy instead of the comp's +5). */
	background: var(--c-navy);
	pointer-events: none;
}

/* Figma says soft-light @ 26%, but Figma's blend runs darker than the browser's:
   0.18 reproduced the comp's measured texture exactly; Drew asked for a touch more
   photo, twice; landed at 0.26. */
.hero__bg-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: soft-light;
	opacity: 0.26;
}

.hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(144.5deg, rgba(7, 48, 102, 0) 55.8%, #073066 92.8%);
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(920px, 100%);
}

.hero__title {
	font-family: var(--font-display);
	-webkit-text-stroke: var(--display-stroke) currentcolor;
	font-weight: 700;
	/* 50px at 1440. The 920px box breaks after "IS" under both faces. */
	font-size: clamp(1.75rem, 3.47vw, 3.125rem);
	line-height: 1.18;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--c-white);
	margin: 0;
}

.hero .accent-rule {
	margin: 24px 0;
}

.hero__subhead {
	font-size: clamp(1.0625rem, 1.32vw, 1.1875rem);
	line-height: 1.65;
	color: var(--c-white-88);
	max-width: 760px;
	margin: 0;
}

.hero__ctas {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

.button--hero {
	padding: 20px 42px;
	font-size: 15px;
	letter-spacing: 0.067em;
}

.button--hero.button--outline {
	/* 1.5px border each side; keep the same outer height as the red button. */
	padding: 18.5px 40px;
}

/* --------------------------------------------------------------------------
 * Story + video
 * ------------------------------------------------------------------------ */

.story {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(32px, 3.06vw, 44px);
	background: var(--c-white);
	padding: clamp(64px, 6.67vw, 96px) var(--pad-x);
}

.story__title {
	font-family: var(--font-display);
	-webkit-text-stroke: var(--display-stroke) currentcolor;
	font-weight: 700;
	font-size: clamp(1.375rem, 2.64vw, 2.375rem);
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	text-align: center;
	color: var(--c-navy);
	margin: 0;
}

.video {
	position: relative;
	width: min(820px, 100%);
	aspect-ratio: 820 / 461;
	background: var(--c-navy);
	border-radius: 6px;
	overflow: hidden;
}

.video__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 96px;
	height: 96px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease;
}

.video__play:hover,
.video__play:focus-visible {
	transform: translate(-50%, -50%) scale(1.06);
}

.video__play:focus-visible {
	outline: 3px solid var(--c-white);
	outline-offset: 4px;
}

.video__play-icon {
	display: block;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 6px 18px rgba(0, 13, 38, 0.35));
}

.video--playing .video__poster,
.video--playing .video__play {
	display: none;
}

.video__player {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #000;
}

.story__body {
	width: min(820px, 100%);
	font-size: 17px;
	line-height: 1.8;
	color: var(--c-text);
}

.story__body p {
	margin: 0;
}

.story__body p + p {
	margin-top: 22px;
}

.story__body a,
.story__body a:visited {
	color: var(--c-red);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.story__closing {
	font-weight: 600;
	color: var(--c-navy);
}

/* --------------------------------------------------------------------------
 * Sign-on form section
 * ------------------------------------------------------------------------ */

.signup {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
	background: var(--c-navy);
	padding: clamp(64px, 6.39vw, 92px) var(--pad-x);
	overflow: hidden;
}

.signup__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--c-navy); /* blend backdrop — see .hero__bg */
	pointer-events: none;
}

/* Figma: soft-light @ 20%; 0.22 matched the comp's measured texture; 0.30 per Drew (two notches up). */
.signup__bg-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: soft-light;
	opacity: 0.30;
}

.signup__card {
	width: min(740px, 100%);
	background: var(--c-white);
	border-radius: 8px;
	padding: clamp(32px, 3.61vw, 52px) clamp(20px, 3.89vw, 56px);
	box-shadow: 0 14px 38px rgba(0, 13, 38, 0.22);
	text-align: center;
}

.signup__title {
	font-family: var(--font-display);
	-webkit-text-stroke: var(--display-stroke) currentcolor;
	font-weight: 700;
	font-size: clamp(1.5rem, 2.22vw, 2rem);
	line-height: 1.22;
	text-transform: uppercase;
	color: var(--c-navy);
	margin: 0;
}

.signup__subtitle {
	font-size: clamp(1.0625rem, 1.32vw, 1.1875rem);
	line-height: normal;
	letter-spacing: 0.021em;
	color: var(--c-navy-80);
	margin: 14px 0 0;
}

.signup__description {
	font-size: 16px;
	line-height: 1.6;
	color: var(--c-muted);
	margin: 14px 0 0;
}

.signup__call {
	width: min(740px, 100%);
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
	color: var(--c-white-85);
	margin: 0;
}

.signup__call-number,
.signup__call-number:visited {
	font-weight: 700;
	color: var(--c-white);
	text-decoration: none;
	white-space: nowrap;
}

.signup__call-number:hover,
.signup__call-number:focus {
	color: var(--c-white);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ----- Gravity Forms (plugin CSS disabled; the theme owns the markup) ---- */

.signup .gform_wrapper {
	margin-top: 26px;
	text-align: left;
}

.signup .gform_wrapper form {
	margin: 0;
}

.signup .gform_heading {
	display: none;
}

.signup .gform_fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.signup .gfield {
	grid-column: 1 / -1;
	margin: 0;
}

.signup .gfield--width-half,
.signup .gfield.gf-half {
	grid-column: auto / span 1;
}

/* Labels are placeholders in the design; keep the real labels for AT. */
.signup .hidden_label > .gfield_label,
.signup .hidden_label > legend.gfield_label,
.signup .gfield_label.hidden_label,
.signup .gform-field-label.hidden_label {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

.signup .gfield_label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-navy-80);
	margin-bottom: 8px;
}

.signup .gfield_required {
	display: none;
}

.signup .ginput_container input[type="text"],
.signup .ginput_container input[type="email"],
.signup .ginput_container input[type="tel"],
.signup .ginput_container input[type="number"],
.signup .ginput_container textarea {
	display: block;
	width: 100%;
	background: var(--c-field);
	border: 1px solid var(--c-field-border);
	border-radius: var(--radius);
	padding: 17px 18px;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: normal;
	color: var(--c-text);
	-webkit-appearance: none;
	appearance: none;
}

.signup .ginput_container textarea {
	min-height: 132px;
	resize: vertical;
	line-height: 1.5;
}

.signup .ginput_container input::placeholder,
.signup .ginput_container textarea::placeholder {
	color: var(--c-placeholder);
	opacity: 1;
}

.signup .ginput_container input:focus,
.signup .ginput_container textarea:focus {
	outline: 2px solid var(--c-navy);
	outline-offset: -1px;
	border-color: var(--c-navy);
	background: var(--c-white);
}

/* GF renders choice fields as fieldsets — neutralize browser chrome. */
.signup fieldset.gfield {
	border: 0;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.signup .gfield legend.gfield_label {
	display: block;
	float: none;
	width: auto;
	padding: 0;
}

/* The "Optional: Add a short message of thanks" toggle. */
.signup .gfield_checkbox {
	padding-top: 4px;
}

.signup .gfield_checkbox .gchoice {
	display: flex;
	align-items: center;
	gap: 12px;
}

.signup .gfield_checkbox input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	flex-shrink: 0;
	width: 19px;
	height: 19px;
	margin: 0;
	background: var(--c-white);
	border: 1.5px solid var(--c-check-border);
	border-radius: 3px;
	cursor: pointer;
	display: grid;
	place-content: center;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.signup .gfield_checkbox input[type="checkbox"]::before {
	content: "";
	width: 11px;
	height: 11px;
	transform: scale(0);
	transition: transform 0.12s ease;
	background: var(--c-white);
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.signup .gfield_checkbox input[type="checkbox"]:checked {
	background: var(--c-navy);
	border-color: var(--c-navy);
}

.signup .gfield_checkbox input[type="checkbox"]:checked::before {
	transform: scale(1);
}

.signup .gfield_checkbox input[type="checkbox"]:focus-visible {
	outline: 2px solid var(--c-navy);
	outline-offset: 2px;
}

.signup .gfield_checkbox label {
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0;
	text-transform: none;
	color: var(--c-text);
	cursor: pointer;
	margin: 0;
}

.signup .gfield_description {
	font-size: 13px;
	color: var(--c-muted);
	margin-top: 6px;
}

/* Character counter under the message textarea. */
.signup .charleft {
	font-size: 13px;
	color: var(--c-muted);
	margin-top: 6px;
}

/* Validation */
.signup .gform_validation_errors {
	background: rgba(198, 25, 36, 0.08);
	border: 1px solid var(--c-red);
	border-radius: var(--radius);
	padding: 12px 16px;
	margin-bottom: 18px;
}

.signup .gform_validation_errors h2 {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 700;
	color: var(--c-red);
	margin: 0;
}

.signup .gform_validation_errors ol {
	display: none;
}

.signup .gfield_validation_message,
.signup .validation_message {
	font-size: 13px;
	font-weight: 600;
	color: var(--c-red);
	margin-top: 6px;
}

.signup .gfield_error .ginput_container input,
.signup .gfield_error .ginput_container textarea {
	border-color: var(--c-red);
}

/* Honeypot — GF hides it inline; belt and braces. */
.signup .gform_validation_container {
	display: none !important;
}

/* Submit — outside the fields grid, so restate the 14px gap. */
.signup .gform_footer {
	margin: 14px 0 0;
	padding: 0;
}

.signup .gform_footer input[type="submit"],
.signup .gform_footer button {
	display: block;
	width: 100%;
	background: var(--c-red);
	color: var(--c-white);
	border: 0;
	border-radius: var(--radius);
	padding: 20px;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.0625em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.signup .gform_footer input[type="submit"]:hover,
.signup .gform_footer input[type="submit"]:focus,
.signup .gform_footer button:hover,
.signup .gform_footer button:focus {
	background: var(--c-red-hover);
}

.signup .gform_footer input[type="submit"]:focus-visible,
.signup .gform_footer button:focus-visible {
	outline: 2px solid var(--c-navy);
	outline-offset: 2px;
}

/* GF's AJAX spinner has no place here (non-AJAX form). */
.signup .gform_ajax_spinner {
	display: none;
}

/* Confirmation */
.signup .gform_confirmation_wrapper {
	margin-top: 26px;
}

.signup .gform_confirmation_message {
	font-size: clamp(1.0625rem, 1.32vw, 1.1875rem);
	line-height: 1.6;
	text-align: center;
	color: var(--c-navy);
}

.signup .gform_confirmation_message p {
	margin: 0;
}

.signup .gform_confirmation_message p + p {
	margin-top: 12px;
}

/* --------------------------------------------------------------------------
 * 404
 * ------------------------------------------------------------------------ */

.error-404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--c-navy);
	color: var(--c-white);
	text-align: center;
	padding: clamp(72px, 9vw, 140px) var(--pad-x);
}

.error-404__code {
	font-family: var(--font-display);
	-webkit-text-stroke: var(--display-stroke) currentcolor;
	font-weight: 700;
	font-size: clamp(3.5rem, 9vw, 7.5rem);
	line-height: 1;
	letter-spacing: 0.02em;
	color: var(--c-red);
	margin: 0 0 clamp(12px, 1.5vw, 20px);
}

.error-404__title {
	font-family: var(--font-display);
	-webkit-text-stroke: var(--display-stroke) currentcolor;
	font-weight: 700;
	font-size: clamp(1.375rem, 2.64vw, 2.375rem);
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--c-white);
	margin: 0;
}

.error-404__message {
	font-size: clamp(1rem, 1.32vw, 1.1875rem);
	line-height: 1.6;
	color: var(--c-white-88);
	max-width: 34em;
	margin: 16px 0 0;
}

.error-404__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	margin-top: clamp(28px, 3vw, 40px);
}

.error-404__home,
.error-404__home:visited {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-white-88);
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.error-404__home:hover,
.error-404__home:focus {
	color: var(--c-white);
	border-bottom-color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
 * Interior content pages (Privacy Policy, etc.)
 *
 * Scoped with :not(.landing) so the front page's full-bleed sections are
 * untouched.
 * ------------------------------------------------------------------------ */

.site-main:not(.landing) {
	max-width: 780px;
	margin: 0 auto;
	padding: clamp(36px, 4vw, 56px) 24px clamp(48px, 5vw, 72px);
}

.site-main:not(.landing) .entry-header {
	margin-bottom: clamp(24px, 3vw, 40px);
}

.site-main:not(.landing) .entry-title {
	font-family: var(--font-display);
	-webkit-text-stroke: var(--display-stroke) currentcolor;
	font-weight: 700;
	font-size: clamp(1.5rem, 2.64vw, 2.375rem);
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--c-navy);
	margin: 0;
}

.site-main:not(.landing) .entry-content {
	font-size: 17px;
	line-height: 1.7;
	color: var(--c-text);
}

.site-main:not(.landing) .entry-content > * + * {
	margin-top: 1.15em;
}

.site-main:not(.landing) .entry-content h2,
.site-main:not(.landing) .entry-content h3,
.site-main:not(.landing) .entry-content h4 {
	font-family: var(--font-body);
	font-weight: 700;
	line-height: 1.25;
	color: var(--c-navy);
	margin-top: 1.9em;
	margin-bottom: 0.4em;
}

.site-main:not(.landing) .entry-content h2 {
	font-size: 1.5rem;
}

.site-main:not(.landing) .entry-content h3 {
	font-size: 1.1875rem;
}

.site-main:not(.landing) .entry-content h4 {
	font-size: 1.0625rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--c-navy-80);
}

.site-main:not(.landing) .entry-content a,
.site-main:not(.landing) .entry-content a:visited {
	color: var(--c-red);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	overflow-wrap: break-word;
}

.site-main:not(.landing) .entry-content a:hover,
.site-main:not(.landing) .entry-content a:focus {
	color: var(--c-red-hover);
}

.site-main:not(.landing) .entry-content ul,
.site-main:not(.landing) .entry-content ol {
	padding-left: 1.35em;
}

.site-main:not(.landing) .entry-content li + li {
	margin-top: 0.4em;
}

.site-main:not(.landing) .entry-content blockquote {
	border-left: 3px solid var(--c-field-border);
	padding-left: 1.15em;
	margin-left: 0;
	color: var(--c-muted);
}

.site-main:not(.landing) .entry-content img {
	max-width: 100%;
	height: auto;
}

.site-main:not(.landing) .entry-footer {
	margin-top: 2.5em;
	font-size: 13px;
	color: var(--c-fineprint);
}

/* --------------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------------ */

.site-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	background: var(--c-white);
	text-align: center;
	padding: 52px var(--pad-x);
}

.footer-logo a {
	display: block;
	line-height: 0;
}

.footer-logo__img,
.footer-logo img {
	display: block;
	height: 86px;
	width: auto;
}

.footer-social-links {
	display: flex;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social-links a,
.footer-social-links a:visited {
	color: var(--c-navy);
	display: block;
	line-height: 0;
}

.footer-social-links a:hover,
.footer-social-links a:focus {
	color: var(--c-red);
}

/* The base sheet boxes the disclaimer (border, uppercase, bold); this design
   wants a plain sentence-case line. */
.paid-for-disclaimer {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.023em;
	text-transform: none;
	color: var(--c-fineprint);
}

/* Copyright + privacy link: one quiet fine-print row under the disclaimer. */
.site-footer .site-info {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 4px 12px;
	margin-top: -8px;
	font-size: 12px;
	letter-spacing: 0.01em;
	color: var(--c-fineprint);
	opacity: 0.85;
}

.footer-legal-links a,
.footer-legal-links a:visited {
	color: var(--c-fineprint);
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus {
	color: var(--c-navy);
	border-bottom-color: var(--c-field-border);
}

.site-info__copyright + .footer-legal-links::before {
	content: "•";
	margin-right: 12px;
	color: currentcolor;
}

.footer-source-note {
	margin: -8px 0 0;
	font-size: 12px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--c-fineprint);
}

/* --------------------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------------------ */

@media (max-width: 900px) {
	.site-header__actions {
		gap: 18px;
	}
}

@media (max-width: 782px) {
	:root {
		--header-offset: 82px;
	}

	.site-header {
		padding: 14px 20px;
	}

	.site-branding .custom-logo {
		height: 46px;
	}

	.header-phone {
		font-size: 14px;
	}

	.donate-button {
		padding: 11px 16px;
		font-size: 12px;
	}

	.video__play {
		width: 72px;
		height: 72px;
	}

	.story__body {
		font-size: 16px;
		line-height: 1.75;
	}

	.footer-logo__img,
	.footer-logo img {
		height: 68px;
	}

	.site-footer {
		padding: 40px var(--pad-x);
	}
}

@media (max-width: 600px) {
	/* Phone collapses to its glyph; the number itself stays in the hero. */
	.header-phone {
		width: 40px;
		height: 40px;
		justify-content: center;
		border: 1px solid var(--c-field-border);
		border-radius: var(--radius);
	}

	.header-phone__number {
		border: 0;
		clip: rect(1px, 1px, 1px, 1px);
		clip-path: inset(50%);
		height: 1px;
		width: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
	}

	.site-header__actions {
		gap: 10px;
	}

	.hero .accent-rule {
		margin: 20px 0;
	}

	.hero__ctas {
		flex-direction: column;
		width: 100%;
		margin-top: 32px;
	}

	.button--hero {
		width: min(360px, 100%);
	}

	.signup .gform_fields {
		grid-template-columns: 1fr;
	}

	.signup .gfield--width-half,
	.signup .gfield.gf-half {
		grid-column: 1 / -1;
	}

	.signup .gfield_checkbox .gchoice {
		align-items: flex-start;
	}

	.signup .gfield_checkbox input[type="checkbox"] {
		margin-top: 1px;
	}

	.video {
		border-radius: 4px;
	}

	.video__play {
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 380px) {
	.site-branding .custom-logo {
		height: 40px;
	}

	.donate-button {
		padding: 10px 12px;
		font-size: 11px;
		letter-spacing: 0.04em;
	}
}
