/* Leigh Williams Design — interaction and motion CSS.
   Tokens and static styling live in theme.json; this file holds only what block styles cannot do. */

:root {
	--lwd-radius: 8px;
	--lwd-ease-standard: cubic-bezier(.2, 0, .2, 1);
	--lwd-ease-editorial: cubic-bezier(.16, .84, .24, 1);
}

/* Squared-off base, 8px softening on the things that read as objects. */
.wp-block-button__link,
.wp-block-search__input,
input,
textarea,
select,
.wp-block-image img,
.wp-block-post-featured-image img,
.lwd-card {
	border-radius: var(--lwd-radius);
}

/* --- Nav: hides on scroll down, returns on scroll up ------------------------ */

.wp-site-blocks > header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--wp--preset--color--creamy);
	border-bottom: 1px solid var(--wp--preset--color--ink-200);
	transition: transform 320ms var(--lwd-ease-editorial);
}

body.lwd-nav-hidden .wp-site-blocks > header.wp-block-template-part {
	transform: translateY(-100%);
}

/* Uppercase tracked nav, underline on hover. */
.lwd-nav a {
	text-decoration: none;
	font-size: var(--wp--preset--font-size--label);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--blackish);
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
}

.lwd-nav a:hover,
.lwd-nav .current-menu-item > a {
	border-bottom-color: var(--wp--preset--color--blackish);
	color: var(--wp--preset--color--blackish);
}

/* --- Buttons: arrow slides right on hover ---------------------------------- */

.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.wp-block-button__link::after {
	content: "";
	width: 14px;
	height: 14px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: transform 260ms var(--lwd-ease-editorial);
}

.wp-block-button__link:hover::after {
	transform: translateX(5px);
}

/* Opt out on a per-button basis with the "No arrow" block style. */
.is-style-lwd-no-arrow .wp-block-button__link::after,
.wp-block-button.is-style-lwd-no-arrow .wp-block-button__link::after {
	display: none;
}

/* --- Work cards: image only at rest, details on hover ---------------------- */

.lwd-work-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--lwd-radius);
	background: var(--wp--preset--color--paper-300);
}

.lwd-work-card .wp-block-post-featured-image img,
.lwd-work-card img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 700ms var(--lwd-ease-editorial);
}

.lwd-work-card:hover .wp-block-post-featured-image img,
.lwd-work-card:hover img {
	transform: scale(1.04);
}

.lwd-work-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	padding: clamp(20px, 3vw, 32px);
	background: rgba(1, 1, 1, 0.62);
	color: var(--wp--preset--color--creamy);
	opacity: 0;
	transition: opacity 320ms var(--lwd-ease-standard);
}

.lwd-work-card:hover .lwd-work-card__overlay,
.lwd-work-card:focus-within .lwd-work-card__overlay {
	opacity: 1;
}

.lwd-work-card__overlay h3,
.lwd-work-card__overlay .wp-block-post-title,
.lwd-work-card__overlay .wp-block-post-title a {
	color: var(--wp--preset--color--creamy);
	margin: 0;
	font-size: clamp(1.75rem, 2.6vw, 2.5rem);
	text-decoration: none;
}

.lwd-work-card__overlay p {
	font-size: var(--wp--preset--font-size--small);
	line-height: 1.5;
	margin: 12px 0 0;
	max-width: 380px;
}

.lwd-work-card__arrow {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border: 1.5px solid currentColor;
	border-radius: 50%;
	display: grid;
	place-items: center;
	transform: translateX(-12px);
	transition: transform 320ms var(--lwd-ease-editorial);
}

.lwd-work-card:hover .lwd-work-card__arrow {
	transform: translateX(0);
}

/* --- Scroll reveals -------------------------------------------------------- */

.lwd-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity var(--wp--custom--duration-reveal, 700ms) var(--lwd-ease-editorial),
		transform var(--wp--custom--duration-reveal, 700ms) var(--lwd-ease-editorial);
}

.lwd-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media ( prefers-reduced-motion: reduce ) {
	.lwd-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* --- "What you get": number circles grow on hover -------------------------- */

.lwd-numbered {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--wp--preset--color--sunshine);
	display: grid;
	place-items: center;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: 1.375rem;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--blackish);
	transform-origin: left center;
	transition: transform var(--wp--custom--duration-base, 220ms) var(--lwd-ease-standard);
}

.lwd-benefit:hover .lwd-numbered {
	transform: scale(1.15);
}

/* --- Proof strip marquee --------------------------------------------------- */

.lwd-marquee {
	overflow: hidden;
	border-top: 1px solid var(--wp--preset--color--ink-200);
	border-bottom: 1px solid var(--wp--preset--color--ink-200);
	padding: 28px 0;
}

.lwd-marquee__track {
	display: flex;
	gap: 64px;
	width: max-content;
	animation: lwd-marquee 48s linear infinite;
	will-change: transform;
}

.lwd-marquee__track > span {
	display: flex;
	align-items: center;
	gap: 64px;
	white-space: nowrap;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: clamp(1.375rem, 2vw, 2rem);
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--blackish);
}

.lwd-marquee__track > span::after {
	content: "·";
	color: var(--wp--preset--color--flamingo);
}

@keyframes lwd-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media ( prefers-reduced-motion: reduce ) {
	.lwd-marquee__track { animation: none; }
}

/* --- Hero rotator: each image wipes in from the right, slow zoom on hold --- */

.lwd-hero {
	position: relative;
	min-height: calc(100svh - 92px);
	display: grid;
	align-items: end;
	overflow: hidden;
	background: var(--wp--preset--color--paper-300);
}

.lwd-hero__media {
	position: absolute;
	inset: 0;
}

.lwd-hero__slide {
	position: absolute;
	inset: 0;
	clip-path: inset(0 0 0 100%);
	transform: scale(1);
}

.lwd-hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

.lwd-hero__slide.is-current {
	clip-path: inset(0 0 0 0);
	transform: scale(1.07);
	transition: clip-path 1100ms var(--lwd-ease-editorial), transform 5.2s linear;
	z-index: 2;
}

.lwd-hero__slide.is-previous {
	clip-path: inset(0 0 0 0);
	transform: scale(1.07);
	z-index: 1;
}

.lwd-hero__panel {
	position: relative;
	z-index: 3;
	background: var(--wp--preset--color--creamy);
	max-width: clamp(320px, 66vw, 920px);
	padding: clamp(32px, 4vw, 56px) clamp(32px, 5vw, 72px) clamp(32px, 4vw, 56px) clamp(20px, 4vw, 32px);
}

/* --- Sticky "View my work" link (Services) --------------------------------- */

.lwd-sticky-link {
	position: fixed;
	right: clamp(16px, 3vw, 32px);
	bottom: clamp(16px, 3vw, 32px);
	z-index: 30;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	border-radius: var(--lwd-radius);
	background: var(--wp--preset--color--chianti);
	color: var(--wp--preset--color--paper-100);
	text-decoration: none;
	font-size: var(--wp--preset--font-size--label);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity 320ms var(--lwd-ease-standard), transform 320ms var(--lwd-ease-editorial), background 220ms var(--lwd-ease-standard);
}

.lwd-sticky-link.is-visible {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.lwd-sticky-link:hover {
	background: var(--wp--preset--color--flamingo);
	color: var(--wp--preset--color--blackish);
}

/* --- Footer speech bubble -------------------------------------------------- */

.lwd-bubble {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px 24px 22px;
	border-radius: var(--lwd-radius);
	background: var(--wp--preset--color--cotton-candy);
	color: var(--wp--preset--color--blackish);
	text-decoration: none;
	transition: background 220ms var(--lwd-ease-standard);
}

.lwd-bubble::before {
	content: "";
	position: absolute;
	left: 24px;
	bottom: -9px;
	width: 18px;
	height: 18px;
	background: inherit;
	transform: rotate(45deg);
}

.lwd-bubble:hover {
	background: var(--wp--preset--color--faded-rose);
	color: var(--wp--preset--color--blackish);
}

.lwd-bubble strong {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: 1.75rem;
	line-height: 1;
	letter-spacing: -0.02em;
}

.lwd-bubble span {
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--ink-700);
}

/* --- Wave divider --------------------------------------------------------- */

.lwd-wave {
	display: block;
	width: 100%;
	height: 110px;
	line-height: 0;
}

.lwd-wave svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* --- FAQ ------------------------------------------------------------------ */

.lwd-faq .wp-block-details {
	border-top: 1px solid var(--wp--preset--color--ink-200);
	padding: 28px 0;
}

.lwd-faq summary {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: clamp(1.375rem, 2.2vw, 1.875rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--blackish);
	cursor: pointer;
	list-style: none;
}

.lwd-faq summary::-webkit-details-marker {
	display: none;
}

/* Answers stay open on desktop — the copy is the argument, not support trivia.
   They collapse on small screens to keep the scroll sane. */
@media ( min-width: 782px ) {
	.lwd-faq .wp-block-details > :not(summary) {
		display: block !important;
	}

	.lwd-faq summary {
		cursor: default;
		pointer-events: none;
	}
}

/* --- Accessibility -------------------------------------------------------- */

:focus-visible {
	outline: 2px solid var(--wp--preset--color--sunshine);
	outline-offset: 2px;
	box-shadow: 0 0 0 4px var(--wp--preset--color--blackish);
}

.lwd-skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100;
	padding: 12px 20px;
	background: var(--wp--preset--color--blackish);
	color: var(--wp--preset--color--creamy);
}

/* --- Brand identity orbit graphic ----------------------------------------- */

.lwd-orbit svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
	font-family: var(--wp--preset--font-family--sans);
}

.lwd-orbit__ring {
	fill: none;
	stroke: var(--wp--preset--color--ink-400);
	stroke-width: 1;
	stroke-dasharray: 3 6;
}

.lwd-orbit__core {
	fill: var(--wp--preset--color--sunshine);
}

.lwd-orbit__title {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: 62px;
	letter-spacing: -0.02em;
	fill: var(--wp--preset--color--blackish);
}

.lwd-orbit__part {
	cursor: pointer;
}

.lwd-orbit__dot {
	fill: var(--wp--preset--color--cotton-candy);
	transition: r 300ms var(--lwd-ease-editorial), fill 300ms var(--lwd-ease-standard);
}

.lwd-orbit__part.is-active .lwd-orbit__dot {
	r: 15;
	fill: var(--wp--preset--color--sunshine);
}

.lwd-orbit__label {
	font-size: 16px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	fill: var(--wp--preset--color--ink-600);
	transition: transform 420ms var(--lwd-ease-editorial), fill 300ms var(--lwd-ease-standard);
}

.lwd-orbit__part.is-active .lwd-orbit__label {
	transform: translate(0, 0) !important;
	fill: var(--wp--preset--color--blackish);
}

.lwd-orbit__items {
	opacity: 0;
	transition: opacity 420ms var(--lwd-ease-editorial);
}

.lwd-orbit__items path,
.lwd-orbit__items line {
	fill: none;
	stroke: var(--wp--preset--color--ink-400);
	stroke-width: 1;
}

.lwd-orbit__item {
	font-size: 20px;
	fill: var(--wp--preset--color--blackish);
}

.lwd-orbit__part.is-active .lwd-orbit__items {
	opacity: 1;
}

/* Project subhead on a case study sits tight under the title. */
.lwd-project-subhead {
	color: var(--wp--preset--color--blackish);
	max-width: 800px;
	text-wrap: balance;
}

/* Work archive taxonomy filters, styled as pills. */
.lwd-filters ul,
.lwd-filters.wp-block-categories {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.lwd-filters a {
	display: inline-block;
	padding: 6px 16px;
	border: 1px solid var(--wp--preset--color--ink-200);
	border-radius: 999px;
	font-size: var(--wp--preset--font-size--label);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none;
	color: var(--wp--preset--color--blackish);
	transition: background 220ms var(--lwd-ease-standard), border-color 220ms var(--lwd-ease-standard);
}

.lwd-filters a:hover {
	background: var(--wp--preset--color--blackish);
	border-color: var(--wp--preset--color--blackish);
	color: var(--wp--preset--color--creamy);
}

/* Runner image sits flush to the bottom of the CTA band. */
.lwd-runner img {
	max-height: 240px;
	width: auto;
	object-fit: contain;
	object-position: bottom right;
}

/* The orbit needs width to read — give it the larger half of its row. */
.lwd-orbit {
	width: 100%;
	max-width: 720px;
	margin-inline: auto;
}

@media ( min-width: 900px ) {
	.lwd-orbit {
		min-width: 520px;
	}
}

/* Empty-state copy for the work grid before any projects exist. */
.wp-block-query-no-results p {
	color: var(--wp--preset--color--ink-600);
	font-size: var(--wp--preset--font-size--small);
}

/* The hero panel headline is the page's biggest type — never let a preset shrink it. */
.lwd-hero__panel h1 {
	font-size: clamp(2.75rem, 6.6vw, 6.5rem);
	line-height: 0.94;
}

/* Until hero images are uploaded, the empty media area should not read as a broken block. */
.lwd-hero__media:not(:has(img[src])) {
	background: var(--wp--preset--color--paper-300);
}

.lwd-hero__slide img:not([src]) {
	display: none;
}

/* Marquee must never create a horizontal scrollbar on the document. */
body {
	overflow-x: hidden;
}

/* --- Hero: images on top, copy beneath ------------------------------------ */

.lwd-hero {
	min-height: 0;
	display: block;
	background: transparent;
}

.lwd-hero__media {
	position: relative;
	inset: auto;
	height: min(62vh, 620px);
	overflow: hidden;
	background: var(--wp--preset--color--paper-300);
}

.lwd-hero__panel {
	position: static;
	background: transparent;
	max-width: none;
	padding: clamp(32px, 5vw, 64px) 0 0;
}

.lwd-hero__panel > * {
	max-width: 920px;
}

/* --- What you get: five equal tracks across the full content width -------- */

.lwd-benefits {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media ( max-width: 1100px ) {
	.lwd-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media ( max-width: 600px ) {
	.lwd-benefits {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* --- Wave sits flush against its band, no seam --------------------------- */

.lwd-wave {
	margin-bottom: -2px;
}

.lwd-wave + .wp-block-group {
	border-top: 0;
}

/* --- Accessibility ------------------------------------------------------- */

/* Decorative marquee text is duplicated for the loop; the band carries the label. */
.lwd-marquee__track {
	user-select: none;
}

/* Overlay copy on work cards sits on Blackish at 62% — 4.7:1 for body, and the
   title is display-scale, so both clear AA. Keep the fill solid, never lower. */
.lwd-work-card__overlay {
	background: rgba(1, 1, 1, 0.62);
}

/* Empty-state and muted copy use ink-600 (6.1:1 on Creamy), never ink-500. */
.wp-block-query-no-results p,
.has-ink-500-color {
	color: var(--wp--preset--color--ink-600) !important;
}

/* Keyboard users get the orbit too. */
.lwd-orbit__part:focus-visible {
	outline: 2px solid var(--wp--preset--color--sunshine);
	outline-offset: 4px;
}

/* Sticky link is a real link, so it lands in tab order — make its focus obvious. */
.lwd-sticky-link:focus-visible {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

/* --- Hero: image band and intro copy are two separate sections ----------- */

.lwd-hero {
	padding: 0;
}

.lwd-hero__media {
	height: min(58vh, 560px);
}

.lwd-hero-intro .lwd-hero__panel {
	background: transparent;
	max-width: none;
	padding: 0;
}

.lwd-hero-intro .lwd-hero__panel > * {
	max-width: 920px;
}

/* --- Problem: columns start at the top, the graphic centers in its cell -- */

.lwd-graphic-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lwd-graphic-col > * {
	width: 100%;
}

.lwd-graphic-col .lwd-orbit {
	margin-inline: auto;
}

/* --- What you get: five tracks across the whole content width ------------ */

.wp-block-group.lwd-benefits {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	width: 100%;
}

@media ( max-width: 1100px ) {
	.wp-block-group.lwd-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media ( max-width: 600px ) {
	.wp-block-group.lwd-benefits {
		grid-template-columns: minmax(0, 1fr) !important;
	}
}

/* --- Testimonial: tight squiggle, quiet attribution ---------------------- */

.lwd-card .lwd-wave {
	margin-bottom: 0;
}

.lwd-card .wp-block-quote {
	margin-top: 20px;
}

.wp-block-quote cite,
.lwd-card cite {
	display: block;
	margin-top: 24px;
	font-family: var(--wp--preset--font-family--sans);
	font-style: normal;
	font-weight: 500;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	line-height: 1.5;
	color: var(--wp--preset--color--ink-700);
}

/* --- Links: paragraph color, Chianti on hover ---------------------------- */

.wp-site-blocks a:where(:not(.wp-element-button):not(.lwd-bubble):not(.lwd-sticky-link):not(.wp-block-navigation-item__content):not(.wp-social-link-anchor)) {
	color: currentColor;
	text-underline-offset: 0.18em;
	transition: color 140ms var(--lwd-ease-standard);
}

.wp-site-blocks a:where(:not(.wp-element-button):not(.lwd-bubble):not(.lwd-sticky-link):not(.wp-block-navigation-item__content):not(.wp-social-link-anchor)):hover,
.wp-site-blocks a:where(:not(.wp-element-button):not(.lwd-bubble):not(.lwd-sticky-link):not(.wp-block-navigation-item__content):not(.wp-social-link-anchor)):focus-visible {
	color: var(--wp--preset--color--chianti);
}

/* Inside the Blackish footer, Chianti would drop below 4.5:1 — use Sunshine. */
footer a:where(:not(.wp-element-button):not(.lwd-bubble):not(.wp-social-link-anchor)):hover,
footer a:where(:not(.wp-element-button):not(.lwd-bubble):not(.wp-social-link-anchor)):focus-visible {
	color: var(--wp--preset--color--sunshine);
}

/* The footer legal row sets ink-400 on the paragraph; links inherit it, which is
   4.9:1 on Blackish. Lift them to Creamy so they read as the primary text color. */
footer .has-ink-400-color a {
	color: var(--wp--preset--color--creamy);
}

/* Work-card titles are links over the image overlay; they keep the overlay color. */
.lwd-work-card a {
	color: inherit;
}

/* --- Wave into the Sunshine band: no seam, no gap ----------------------- */

.lwd-wave--cta {
	position: relative;
	z-index: 1;
	margin-bottom: -6px;
	background: transparent;
}

.lwd-wave--cta svg {
	height: calc(100% + 6px);
	shape-rendering: geometricPrecision;
}

.lwd-cta-band {
	padding-top: 0 !important;
	margin-top: 0 !important;
	border-top: 0;
}

.lwd-wave--cta + .lwd-cta-band > :first-child {
	margin-top: 0;
}

/* --- Footer social icons ------------------------------------------------ */

.wp-block-social-links.has-large-icon-size {
	--wp--social-icon-size: 32px;
}

.wp-block-social-links.has-large-icon-size .wp-social-link {
	width: 32px;
	height: 32px;
}

.wp-block-social-links.has-large-icon-size .wp-social-link svg {
	width: 32px;
	height: 32px;
}

/* --- CTA band: breathing room up top, flush to the footer --------------- */

.lwd-cta-band {
	padding-top: clamp(24px, 3vw, 48px) !important;
	padding-bottom: clamp(64px, 8vw, 112px);
	margin-bottom: 0 !important;
}

.lwd-cta-band + *,
.wp-site-blocks > footer {
	margin-top: 0 !important;
}

/* --- Buttons: one size, everywhere -------------------------------------- */

/* Every button — filled, outline, in a pattern or typed into a page — lands on
   the same box. Outline borders sit inside the box so they can't change height. */
.wp-block-button__link,
.wp-element-button {
	box-sizing: border-box;
	min-height: 56px;
	padding: 17px 32px;
	font-size: 0.875rem;
	line-height: 1.1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	justify-content: center;
	gap: 12px;
}

.wp-block-button.is-style-outline .wp-block-button__link {
	padding: 16px 31px;
}

/* The header button is the one deliberate exception: smaller, but still a
   44px minimum hit target. */
.wp-block-template-part header .wp-block-button__link,
.lwd-header .wp-block-button__link {
	min-height: 44px;
	padding: 12px 22px !important;
	font-size: 0.8125rem;
}

@media ( max-width: 600px ) {
	.wp-block-buttons > .wp-block-button {
		width: 100%;
	}

	.wp-block-button__link {
		width: 100%;
	}
}

/* --- Footer: everything hovers Sunshine --------------------------------- */

footer a:not(.wp-element-button):not(.lwd-bubble):hover,
footer a:not(.wp-element-button):not(.lwd-bubble):focus-visible,
footer .wp-block-navigation-item__content:hover,
footer .wp-block-navigation-item__content:focus-visible,
footer .has-ink-400-color a:hover,
footer .has-ink-400-color a:focus-visible {
	color: var(--wp--preset--color--sunshine) !important;
}

footer .wp-social-link:hover,
footer .wp-social-link:focus-within {
	color: var(--wp--preset--color--sunshine) !important;
}

footer .wp-social-link:hover svg,
footer .wp-social-link:focus-within svg {
	fill: var(--wp--preset--color--sunshine) !important;
}

/* --- Header: the compact button rule needs to reach the template part --- */

header .wp-block-button__link {
	min-height: 44px;
	padding: 12px 22px !important;
	font-size: 0.8125rem;
}

/* --- Tablet and mobile --------------------------------------------------- */

/* Nothing may push the document sideways. */
img,
svg,
video,
iframe,
figure {
	max-width: 100%;
}

/* Tablet: the header is logo + nav + button on one 92px line until it isn't.
   Below 1000px it wraps to two rows and the nav aligns left with the logo. */
@media ( max-width: 1000px ) {
	header .wp-block-group.alignwide {
		row-gap: 12px;
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.lwd-nav ul {
		justify-content: flex-start;
	}
}

/* Touch targets: nav links get 44px of height on coarse pointers. */
@media ( pointer: coarse ) {
	.lwd-nav a,
	footer .wp-block-navigation-item__content {
		display: inline-flex;
		align-items: center;
		min-height: 44px;
	}

	.wp-social-link {
		min-width: 44px;
		min-height: 44px;
	}
}

/* Project page: the 280px meta rail is too narrow to sit beside body copy
   under ~1000px, so the two columns stack and the rail becomes a header row. */
@media ( max-width: 1000px ) {
	.wp-block-post-content,
	.wp-block-columns:not(.is-not-stacked-on-mobile) {
		flex-wrap: wrap !important;
	}

	body.single-project .wp-block-columns > .wp-block-column,
	.single-project .wp-block-columns > .wp-block-column {
		flex-basis: 100% !important;
	}
}

/* A 21:9 lead image is a letterbox sliver on a phone — open it up. */
@media ( max-width: 781px ) {
	.wp-block-post-featured-image img {
		aspect-ratio: 4 / 3 !important;
		object-fit: cover;
	}

	/* "Next project" stacks its label above the title instead of squeezing. */
	.wp-block-post-navigation-link {
		font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
		line-height: 1;
	}

	/* Section rhythm tightens up so a phone scroll isn't mostly whitespace. */
	.lwd-hero__media {
		height: min(46vh, 360px);
	}

	.lwd-card {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

/* The orbit graphic is 950 units wide; below its min-width it must scroll-free
   scale, never clip. */
@media ( max-width: 900px ) {
	.lwd-orbit {
		min-width: 0;
		width: 100%;
	}

	.lwd-orbit svg {
		width: 100%;
		height: auto;
	}
}

/* --- Header sits flush on whatever follows it --------------------------- */

.wp-site-blocks > header {
	margin-bottom: 0 !important;
}

.wp-site-blocks > header + *,
.wp-site-blocks > header + * > .lwd-hero,
.lwd-hero:first-child {
	margin-top: 0 !important;
}

.wp-site-blocks > header + main > :first-child,
.wp-site-blocks > main > .lwd-hero:first-child {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* --- Buttons: styling lives here, not in block attributes ---------------- */

/* Outline: transparent fill, 1px Blackish rule, Blackish label. Inverts on
   hover. Declared in CSS so the block markup stays validator-proof. */
.wp-block-button.is-style-outline > .wp-block-button__link {
	background-color: transparent;
	color: var(--wp--preset--color--blackish);
	border: 1px solid var(--wp--preset--color--blackish);
	padding: 16px 31px;
}

.wp-block-button.is-style-outline > .wp-block-button__link:hover,
.wp-block-button.is-style-outline > .wp-block-button__link:focus-visible {
	background-color: var(--wp--preset--color--blackish);
	color: var(--wp--preset--color--creamy);
}

/* The compact header button. */
.lwd-btn-compact > .wp-block-button__link {
	min-height: 44px;
	padding: 12px 22px;
	font-size: 0.8125rem;
}

/* Header bar geometry, moved out of block attributes. */
.lwd-header__bar {
	min-height: 92px;
	padding-top: 16px;
	padding-bottom: 16px;
	gap: var(--wp--preset--spacing--40, 32px);
}

.lwd-nav ul {
	gap: clamp(16px, 2.5vw, 32px);
}

/* --- Logos: dark lockup in the header, cream in the footer -------------- */

.lwd-logo {
	display: inline-block;
	line-height: 0;
	text-decoration: none;
}

.lwd-logo img {
	display: block;
	width: auto;
	height: 56px;
}

.lwd-logo--cream img {
	height: 72px;
}

@media ( max-width: 600px ) {
	.lwd-logo img {
		height: 44px;
	}

	.lwd-logo--cream img {
		height: 56px;
	}
}

/* --- Navigation dropdowns ----------------------------------------------- */

/* Submenus: flat Creamy panel, hairline rule, 2px corners — same object
   language as the cards. No shadow at rest, raised while open. */
.wp-block-navigation .wp-block-navigation__submenu-container {
	min-width: 220px;
	padding: 8px 0;
	background-color: var(--wp--preset--color--creamy);
	border: 1px solid var(--wp--preset--color--ink-200);
	border-radius: 2px;
	box-shadow: 0 8px 24px rgba(1, 1, 1, 0.10);
}

.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item {
	width: 100%;
}

.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	display: block;
	width: 100%;
	padding: 10px 18px;
	font-size: var(--wp--preset--font-size--label);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--blackish);
	text-decoration: none;
	border-bottom: 0;
	transition: background-color 140ms var(--lwd-ease-standard), color 140ms var(--lwd-ease-standard);
}

.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus-visible {
	background-color: var(--wp--preset--color--paper-300);
	color: var(--wp--preset--color--chianti);
}

.wp-block-navigation .wp-block-navigation__submenu-container .current-menu-item > .wp-block-navigation-item__content {
	background-color: var(--wp--preset--color--paper-300);
}

/* The caret sits tight to its label and rotates when the menu is open. */
.wp-block-navigation__submenu-icon {
	margin-left: 6px;
	transition: transform 140ms var(--lwd-ease-standard);
}

.wp-block-navigation-item.has-child:hover > .wp-block-navigation-item__content .wp-block-navigation__submenu-icon,
.wp-block-navigation-item.has-child[aria-expanded="true"] .wp-block-navigation__submenu-icon,
.wp-block-navigation-item.has-child .wp-block-navigation-submenu__toggle[aria-expanded="true"] .wp-block-navigation__submenu-icon {
	transform: rotate(180deg);
}

/* A top-level item with children keeps the hover underline the nav uses. */
.lwd-nav .wp-block-navigation-item.has-child > .wp-block-navigation-item__content {
	border-bottom: 1px solid transparent;
}

/* Third level opens sideways, not stacked on top of the second. */
.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
	left: 100%;
	top: -9px;
}

/* Inside the Blackish footer the panel inverts. */
footer .wp-block-navigation .wp-block-navigation__submenu-container {
	background-color: var(--wp--preset--color--ink-800, #1a1a1a);
	border-color: var(--wp--preset--color--ink-700);
	box-shadow: none;
}

footer .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	color: var(--wp--preset--color--creamy);
}

footer .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
footer .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus-visible {
	background-color: transparent;
	color: var(--wp--preset--color--sunshine) !important;
}

/* Mobile overlay: submenus are inline, indented, never floating panels. */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
	min-width: 0;
	padding: 0 0 0 16px;
	background-color: transparent;
	border: 0;
	border-left: 1px solid var(--wp--preset--color--ink-200);
	border-radius: 0;
	box-shadow: none;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	min-height: 44px;
	padding-left: 0;
	padding-right: 0;
}

/* Keyboard: the panel must stay open while anything inside it has focus. */
.wp-block-navigation-item.has-child:focus-within > .wp-block-navigation__submenu-container {
	visibility: visible;
	opacity: 1;
	overflow: visible;
	min-width: 220px;
	height: auto;
	width: auto;
}

/* --- Logos: replaceable Image blocks, sized by the editor ---------------- */

/* Defaults only. Selecting the logo in the editor and setting a width (or
   dragging its handles) writes an inline style that beats these rules. */
.lwd-logo {
	margin: 0;
	line-height: 0;
}

.lwd-logo img {
	display: block;
	width: 180px;
	height: auto;
	border-radius: 0;
}

.lwd-logo--cream img {
	width: 200px;
}

@media ( max-width: 600px ) {
	.lwd-logo img {
		max-width: 140px;
	}
}

/* --- Hero media as a Gallery block -------------------------------------- */

.lwd-hero__media.wp-block-gallery {
	display: block;
	position: relative;
	margin: 0;
	gap: 0;
	height: min(58vh, 560px);
	overflow: hidden;
	background: var(--wp--preset--color--paper-300);
}

/* Every gallery figure stacks in the same box; the rotator swaps classes. */
.lwd-hero__media.wp-block-gallery > figure,
.lwd-hero__media.wp-block-gallery > .wp-block-image {
	position: absolute;
	inset: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

.lwd-hero__media.wp-block-gallery > figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

/* Gallery captions have no place in a full-bleed band. */
.lwd-hero__media figcaption {
	display: none;
}

@media ( max-width: 781px ) {
	.lwd-hero__media.wp-block-gallery {
		height: min(46vh, 360px);
	}
}

/* --- Runner image: styling in CSS, plain markup in the block ------------ */

.lwd-runner {
	margin: 0;
}

.lwd-runner img {
	border-radius: 0;
	border-bottom: 2px solid var(--wp--preset--color--blackish);
}

.lwd-runner figcaption {
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--ink-700);
}

/* --- Case study body ---------------------------------------------------- */

.lwd-case__rail {
	position: sticky;
	top: 124px;
	align-self: start;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.lwd-fact {
	border-top: 1px solid var(--wp--preset--color--ink-200);
	padding-top: 16px;
}

.lwd-fact--first {
	border-top: 2px solid var(--wp--preset--color--blackish);
}

.lwd-fact__label {
	margin: 0;
	font-size: var(--wp--preset--font-size--label);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--ink-600);
}

.lwd-fact__value {
	margin: 0;
	font-size: 0.9375rem;
}

.lwd-case__body {
	max-width: 720px;
}

.lwd-case__lede {
	line-height: 1.6;
}

.lwd-case__body > * + * {
	margin-top: 20px;
}

.lwd-case__body > h2 {
	margin-top: 56px;
}

.lwd-case__details img,
.lwd-case__gallery img {
	border-radius: 8px;
}

@media ( max-width: 1000px ) {
	.lwd-case__rail {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 24px;
	}

	.lwd-case__rail .lwd-fact {
		flex: 1 1 200px;
	}
}

/* --- Project page head -------------------------------------------------- */

/* The category kicker is a link, but it reads as a label — no underline. */
.wp-block-post-terms a,
.wp-block-post-terms a:hover {
	text-decoration: none;
}

.wp-block-post-terms a:hover {
	color: var(--wp--preset--color--chianti);
}

/* The excerpt is the subhead under the project title: display serif, left
   aligned, tucked up under the headline. */
.lwd-project-subhead {
	margin-top: -4px;
	max-width: 900px;
	text-align: left;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: clamp(1.5rem, 2.6vw, 2.25rem);
	line-height: 1.04;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--blackish);
}

.lwd-project-subhead p {
	margin: 0;
	font: inherit;
	letter-spacing: inherit;
}

/* "Next project" keeps the display face without the link underline. */
.lwd-next-project .wp-block-post-navigation-link a {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: clamp(2.25rem, 4.4vw, 4rem);
	line-height: 0.96;
	letter-spacing: -0.02em;
	text-decoration: none;
}

/* --- Work cards: the whole card is the link ----------------------------- */

.lwd-work-card {
	position: relative;
}

/* The featured image is already a link to the project; stretch its hit area
   over the entire card so the image, the title and the arrow all click
   through. The title stays a real link for keyboard and screen readers. */
.lwd-work-card .wp-block-post-featured-image a {
	position: static;
	display: block;
}

.lwd-work-card .wp-block-post-featured-image a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 4;
}

/* Overlay copy must not swallow the click. */
.lwd-work-card__overlay {
	pointer-events: none;
}

.lwd-work-card__overlay a {
	pointer-events: auto;
	position: relative;
	z-index: 5;
	text-decoration: none;
	color: inherit;
}

.lwd-work-card__overlay a:hover {
	color: inherit;
}

/* --- Marquee: full-bleed, edge to edge, editable items ------------------ */

.lwd-marquee {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: 0;
	padding-right: 0;
	overflow: hidden;
}

/* Before the script runs (and inside the editor) the lines read as a plain
   stacked list rather than a broken strip. */
.lwd-marquee__item {
	margin: 0;
	padding: 4px 0;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: clamp(1.375rem, 2vw, 2rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--blackish);
}

.lwd-marquee:has(.lwd-marquee__track) {
	padding-top: 28px;
	padding-bottom: 28px;
}

/* --- Page head (Services, About, Contact) ------------------------------- */

.lwd-kicker {
	margin: 0;
	font-size: var(--wp--preset--font-size--label);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--ink-600);
}

.lwd-page-head__lede {
	max-width: 640px;
}

/* --- Services list ------------------------------------------------------ */

/* Each service is a two-track row: numbered title on the left, copy on the
   right. Rules between rows, none after the last. */
.lwd-service {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
	gap: 24px clamp(32px, 5vw, 80px);
	align-items: start;
	border-top: 2px solid var(--wp--preset--color--blackish);
	padding: 40px 0 56px;
}

.lwd-service__head {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	flex-wrap: nowrap;
}

.lwd-service__num {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	margin: 0;
	border-radius: 50%;
	background: var(--wp--preset--color--sunshine);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: 1.375rem;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--blackish);
}

.lwd-service__title {
	margin: 0;
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	line-height: 0.96;
}

.lwd-service__body {
	max-width: 640px;
}

.lwd-service__body > * + * {
	margin-top: 20px;
}

.lwd-service__for {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--wp--preset--color--ink-600);
}

.lwd-service__for strong {
	font-size: var(--wp--preset--font-size--label);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

@media ( max-width: 900px ) {
	.lwd-service {
		grid-template-columns: minmax(0, 1fr);
		padding-bottom: 40px;
	}
}

/* --- About: intro portrait ---------------------------------------------- */

.lwd-about-intro .wp-block-column > * + * {
	margin-top: 20px;
}

.lwd-portrait {
	margin: 0;
}

.lwd-portrait img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 8px;
	background: var(--wp--preset--color--faded-rose);
}

/* --- About: timeline ---------------------------------------------------- */

/* Five beats across, each with a dot on a hairline. The rule runs behind the
   dots; the last beat's rule stops at its dot. */
.lwd-timeline {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 40px 24px;
}

.lwd-beat {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.lwd-beat__when {
	margin: 0;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: clamp(2rem, 3.4vw, 3.25rem);
	line-height: 0.94;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--blackish);
}

.lwd-beat__what {
	position: relative;
	margin: 0;
	padding-top: 76px;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--wp--preset--color--ink-600);
}

/* The hairline and the dot are drawn on the copy, so they land at the same
   height in every column regardless of how long the date runs. */
.lwd-beat__what::before {
	content: "";
	position: absolute;
	left: 0;
	right: -24px;
	top: 40px;
	height: 1px;
	background: var(--wp--preset--color--ink-300);
}

.lwd-beat--last .lwd-beat__what::before {
	right: 0;
}

.lwd-beat__what::after {
	content: "";
	position: absolute;
	left: 0;
	top: 31px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--wp--preset--color--sunshine);
	border: 2px solid var(--wp--preset--color--creamy);
	box-shadow: 0 0 0 1px var(--wp--preset--color--ink-300);
}

.lwd-beat--last .lwd-beat__what::after {
	background: var(--wp--preset--color--chianti);
}

@media ( max-width: 900px ) {
	.lwd-timeline {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media ( max-width: 600px ) {
	.lwd-timeline {
		grid-template-columns: minmax(0, 1fr);
	}

	.lwd-beat__what::before {
		right: 0;
	}
}

/* --- Two-track split (heading left, copy right) ------------------------- */

.lwd-split .wp-block-column > * + * {
	margin-top: 20px;
}

/* --- Contact ------------------------------------------------------------ */

.lwd-contact-facts .lwd-fact-pair p:not(.lwd-kicker) {
	margin: 0;
	font-size: 1rem;
}

.lwd-form-card {
	background: var(--wp--preset--color--paper-000, #fffdf9);
	border: 1px solid var(--wp--preset--color--ink-200);
	border-radius: 8px;
}

/* Placeholder copy for the form slot — delete the paragraph and this goes. */
.lwd-form-slot {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--wp--preset--color--ink-600);
}

/* --- Full-width sections inside page content ---------------------------- */

/* Page content sits inside a constrained <main>, which caps alignfull at the
   content width. These sections are meant to touch both edges, so they break
   out to the viewport instead. */
.wp-site-blocks main .alignfull,
.wp-site-blocks main > .wp-block-post-content > .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* The gutter goes on the section itself. Putting it on child groups made every
   nested row (service rows, CTA buttons) inherit a 300px inset. */
.wp-site-blocks main > .wp-block-post-content > .alignfull {
	padding-left: clamp(20px, 4vw, 32px);
	padding-right: clamp(20px, 4vw, 32px);
	box-sizing: border-box;
}

/* The hero band, marquee and wave are edge-to-edge with no gutter at all. */
.lwd-hero,
.lwd-hero__media,
.lwd-marquee,
.lwd-cta-wave,
.lwd-wave {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* --- Fixes: Services page ---------------------------------------------- */

/* Service rows: the title track needs room for two-word headings, and the
   copy track should use the width it has. */
.lwd-service {
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}

.lwd-service__title {
	text-wrap: balance;
}

.lwd-service__body {
	max-width: 560px;
}

.lwd-service__for {
	margin-top: 16px;
}

/* The band wave spans the full width and meets the Sunshine band exactly. */
.lwd-cta-wave {
	margin-top: clamp(96px, 12vw, 160px);
	line-height: 0;
}

.lwd-cta-wave .lwd-wave {
	display: block;
	width: 100%;
	max-width: none;
	height: 110px;
	margin: 0;
}

.lwd-cta-wave .lwd-wave svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* No cream strip between the Sunshine band and the footer. */
.lwd-cta-band {
	margin-bottom: 0 !important;
}

.wp-site-blocks > footer {
	margin-top: 0 !important;
}

.wp-site-blocks main:has(> .wp-block-post-content > .lwd-cta-band:last-child) {
	padding-bottom: 0;
}

/* --- Sunshine CTA band: self-contained wave, centered content ----------- */

/* The wave is drawn by the band, so it cannot go missing when the section is
   re-inserted or edited. Any separately inserted wave block is hidden. */
.lwd-cta-band {
	position: relative;
	margin-top: 0 !important;
}

.lwd-cta-band::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 110px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201200%20110%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20d%3D%22M0%20110%20V40%20Q%2050%200%2C%20100%2040%20T%20200%2040%20T%20300%2040%20T%20400%2040%20T%20500%2040%20T%20600%2040%20T%20700%2040%20T%20800%2040%20T%20900%2040%20T%201000%2040%20T%201100%2040%20T%201200%2040%20V110%20Z%22%20fill%3D%22%23f3ac1d%22%2F%3E%3C%2Fsvg%3E");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	pointer-events: none;
}

.lwd-cta-wave {
	display: none;
}

/* Content inside the band lines up with the rest of the page. */
.lwd-cta-band > * {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.lwd-cta-band > p {
	max-width: min(1240px, 100%);
}

.lwd-cta-band > p:not(.lwd-kicker) {
	font-size: 1.125rem;
}

/* The band starts right after the wave, and the wave needs room above it. */
.wp-site-blocks main > .wp-block-post-content > .lwd-cta-band {
	margin-top: 110px !important;
}

/* --- Button hover follows the chosen fill ------------------------------- */

/* WordPress has no hover control in the editor, so hover is derived instead of
   fixed: whatever background you set in the Color panel darkens ~8% on hover.
   Set a custom color and the hover comes along with it. */
.wp-block-button__link:not(.is-style-outline .wp-block-button__link),
.wp-element-button:not(.wp-block-button.is-style-outline > .wp-element-button) {
	transition: filter 140ms var(--lwd-ease-standard), background-color 140ms var(--lwd-ease-standard), color 140ms var(--lwd-ease-standard);
}

.wp-block-button:not(.is-style-outline) > .wp-block-button__link:hover,
.wp-block-button:not(.is-style-outline) > .wp-block-button__link:focus-visible {
	filter: brightness(0.92) saturate(1.05);
}

/* Override point: set --lwd-btn-hover on a button (or on any wrapper) to pin
   an exact hover fill instead of the derived one. */
.wp-block-button[style*="--lwd-btn-hover"] > .wp-block-button__link:hover,
.wp-block-button[style*="--lwd-btn-hover"] > .wp-block-button__link:focus-visible {
	filter: none;
	background-color: var(--lwd-btn-hover) !important;
}

/* Named hover fills — type one of these into a Button block's
   Advanced → Additional CSS class(es). */
.btn-hover-cream > .wp-block-button__link:hover,
.btn-hover-cream > .wp-block-button__link:focus-visible {
	filter: none;
	background-color: rgba(241, 231, 215, 0.7) !important;
	color: var(--wp--preset--color--blackish) !important;
}

.btn-hover-blackish > .wp-block-button__link:hover,
.btn-hover-blackish > .wp-block-button__link:focus-visible {
	filter: none;
	background-color: var(--wp--preset--color--blackish) !important;
	color: var(--wp--preset--color--creamy) !important;
}

.btn-hover-chianti > .wp-block-button__link:hover,
.btn-hover-chianti > .wp-block-button__link:focus-visible {
	filter: none;
	background-color: var(--wp--preset--color--chianti) !important;
	color: var(--wp--preset--color--creamy) !important;
}

/* --- No hairline seam between stacked full-width bands ------------------ */

/* A sub-pixel gap appears where two full-bleed sections meet on fractional
   viewport widths. Overlapping the next band by 1px removes it everywhere. */
.wp-site-blocks > footer,
.wp-site-blocks > main + footer {
	margin-top: -1px !important;
	border-top: 0 !important;
	position: relative;
	z-index: 1;
}

.lwd-cta-band {
	padding-bottom: calc(clamp(64px, 8vw, 112px) + 1px) !important;
}

.wp-site-blocks main,
.wp-site-blocks > main > .wp-block-post-content {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.wp-site-blocks > main > .wp-block-post-content > :last-child {
	margin-bottom: 0 !important;
}

/* The seam survives margin fixes because it is a rounding artifact in the
   painted edge, not a gap. Painting the footer's own color 3px upward covers
   it whatever the source. */
.wp-site-blocks > footer,
.wp-site-blocks footer.wp-block-group {
	margin-top: -6px !important;
	box-shadow: 0 -6px 0 0 var(--wp--preset--color--blackish);
}

/* Belt and braces: the gap is the page background showing through, so the last
   6px of the page carries the footer color instead of Creamy. */
.wp-site-blocks::after {
	content: "";
	display: block;
	height: 0;
}

.wp-site-blocks > main:last-of-type {
	margin-bottom: 0 !important;
}

/* The excerpt block centers its inner paragraph — force the subhead left. */
/* The excerpt block centers its inner paragraph and sits in the narrow
   content column. Put it on the same wide column as the title, flush left. */
.lwd-project-subhead {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	text-align: left;
}

.lwd-project-subhead p,
.lwd-project-subhead .wp-block-post-excerpt__excerpt {
	text-align: left;
	margin-inline: 0;
	max-width: 900px;
}

/* --- Gravity Forms ------------------------------------------------------ */

.gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 24px;
}

.gform_wrapper .gform_required_legend {
	margin: 0 0 24px;
	font-size: var(--wp--preset--font-size--label);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--ink-600);
}

.gform_wrapper.gravity-theme .gfield_label,
.gform_wrapper .gfield_label {
	margin-bottom: 8px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: var(--wp--preset--font-size--label);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--blackish);
}

.gform_wrapper .gfield_required {
	color: var(--wp--preset--color--chianti);
	margin-left: 4px;
}

/* Fields: hairline box, 2px corners, Sunshine focus ring. */
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="email"],
.gform_wrapper.gravity-theme input[type="tel"],
.gform_wrapper.gravity-theme input[type="url"],
.gform_wrapper.gravity-theme input[type="number"],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	background: var(--wp--preset--color--creamy);
	border: 1px solid var(--wp--preset--color--ink-300);
	border-radius: 2px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	line-height: 1.5;
	color: var(--wp--preset--color--blackish);
	transition: border-color 140ms var(--lwd-ease-standard), background-color 140ms var(--lwd-ease-standard);
}

.gform_wrapper.gravity-theme input:hover,
.gform_wrapper.gravity-theme select:hover,
.gform_wrapper.gravity-theme textarea:hover {
	border-color: var(--wp--preset--color--blackish);
}

.gform_wrapper.gravity-theme input:focus,
.gform_wrapper.gravity-theme select:focus,
.gform_wrapper.gravity-theme textarea:focus {
	outline: 2px solid var(--wp--preset--color--sunshine);
	outline-offset: 2px;
	border-color: var(--wp--preset--color--blackish);
}

.gform_wrapper.gravity-theme textarea {
	min-height: 160px;
	max-height: 320px;
	resize: vertical;
}

.gform_wrapper.gravity-theme select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 49%, var(--wp--preset--color--blackish) 50%), linear-gradient(-45deg, transparent 49%, var(--wp--preset--color--blackish) 50%);
	background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%;
	background-size: 6px 6px;
	background-repeat: no-repeat;
	padding-right: 40px;
}

/* Checkboxes and radios: 20px squares/circles, 44px rows on touch. */
.gform_wrapper.gravity-theme .gfield_checkbox,
.gform_wrapper.gravity-theme .gfield_radio {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gform_wrapper.gravity-theme .gchoice {
	display: flex;
	align-items: center;
	gap: 12px;
}

.gform_wrapper.gravity-theme .gchoice input[type="checkbox"],
.gform_wrapper.gravity-theme .gchoice input[type="radio"] {
	appearance: none;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin: 0;
	background: var(--wp--preset--color--creamy);
	border: 1px solid var(--wp--preset--color--ink-300);
	border-radius: 2px;
	cursor: pointer;
	display: grid;
	place-content: center;
}

.gform_wrapper.gravity-theme .gchoice input[type="radio"] {
	border-radius: 50%;
}

.gform_wrapper.gravity-theme .gchoice input:checked {
	background: var(--wp--preset--color--blackish);
	border-color: var(--wp--preset--color--blackish);
}

.gform_wrapper.gravity-theme .gchoice input[type="checkbox"]:checked::after {
	content: "";
	width: 10px;
	height: 6px;
	border-left: 2px solid var(--wp--preset--color--creamy);
	border-bottom: 2px solid var(--wp--preset--color--creamy);
	transform: rotate(-45deg) translateY(-1px);
}

.gform_wrapper.gravity-theme .gchoice input[type="radio"]:checked::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wp--preset--color--creamy);
}

.gform_wrapper.gravity-theme .gchoice label {
	font-size: 1rem;
	line-height: 1.4;
	color: var(--wp--preset--color--blackish);
	cursor: pointer;
}

.gform_wrapper.gravity-theme .gfield_description,
.gform_wrapper .gfield_description {
	padding-top: 6px;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--wp--preset--color--ink-600);
}

/* Submit: the site's button, same box as everywhere else. */
.gform_wrapper .gform_footer {
	margin-top: 32px;
	padding: 0;
}

.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
	box-sizing: border-box;
	min-height: 56px;
	padding: 17px 32px;
	background: var(--wp--preset--color--sunshine);
	color: var(--wp--preset--color--blackish);
	border: 0;
	border-radius: 8px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: filter 140ms var(--lwd-ease-standard);
}

.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover {
	filter: brightness(0.92) saturate(1.05);
}

.gform_wrapper .gform_button:focus-visible,
.gform_wrapper input[type="submit"]:focus-visible {
	outline: 2px solid var(--wp--preset--color--blackish);
	outline-offset: 2px;
}

/* Validation and confirmation. */
.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message {
	margin-top: 6px;
	padding: 0;
	background: transparent;
	border: 0;
	font-size: 0.875rem;
	color: var(--wp--preset--color--chianti);
}

.gform_wrapper .gform_validation_errors {
	background: var(--wp--preset--color--creamy);
	border: 1px solid var(--wp--preset--color--chianti);
	border-radius: 2px;
	box-shadow: none;
}

.gform_wrapper .gform_validation_errors > h2 {
	font-size: 1rem;
	color: var(--wp--preset--color--chianti);
}

.gform_confirmation_message {
	font-size: 1.125rem;
	line-height: 1.6;
}

/* --- Contact page: head sizing and FAQ rules ---------------------------- */

/* The contact headline is long; cap it so it stops breaking to three lines. */
.lwd-split h1 {
	font-size: clamp(2.5rem, 4.4vw, 4rem);
}

.lwd-faq__item {
	border-top: 1px solid var(--wp--preset--color--ink-200);
	padding: 28px 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
	gap: 16px clamp(32px, 5vw, 80px);
	align-items: start;
}

.lwd-faq__item h3 {
	margin: 0;
	font-size: clamp(1.375rem, 2.2vw, 1.875rem);
	line-height: 1.02;
}

.lwd-faq__item p {
	margin: 0;
	max-width: 620px;
}

.lwd-faq__item:last-child {
	border-bottom: 1px solid var(--wp--preset--color--ink-200);
}

@media ( max-width: 782px ) {
	.lwd-faq__item {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* The form card should read as paper, not a white box. */
.lwd-form-card {
	background: var(--wp--preset--color--paper-000, #fdfaf4);
	border-radius: 2px;
}

/* --- The Sunshine period ------------------------------------------------ */

.lwd-dot {
	color: var(--wp--preset--color--sunshine);
}

/* --- Type scale pass ---------------------------------------------------- */

/* Headings were running big enough to break short lines into three. These caps
   keep the display face loud without wrapping. */
.wp-site-blocks h1 {
	font-size: clamp(2.75rem, 6vw, 5.5rem);
	line-height: 0.94;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.wp-site-blocks h2 {
	font-size: clamp(2.125rem, 4vw, 3.5rem);
	line-height: 0.96;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.wp-site-blocks h3 {
	font-size: clamp(1.375rem, 2vw, 1.75rem);
	line-height: 1.05;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

/* Body copy: one size for prose, one step up for ledes. */
.wp-site-blocks p {
	font-size: 1.0625rem;
	line-height: 1.7;
	text-wrap: pretty;
}

.lwd-page-head__lede,
.lwd-case__lede {
	font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
}

.lwd-kicker,
.wp-site-blocks p.lwd-kicker {
	font-size: 0.75rem;
	line-height: 1.4;
}

.lwd-service__for,
.lwd-fact__value,
.lwd-beat__what,
.lwd-form-slot,
.wp-site-blocks p.lwd-service__for {
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* The Sunshine band's heading is the loudest thing on the page, but it still
   has to fit on two lines. */
.lwd-cta-band h2 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
}

/* Anchor target sits below the sticky header when jumped to. */
.lwd-faq-anchor {
	scroll-margin-top: 112px;
}

/* --- Post prose: one left edge for everything --------------------------- */

/* Body copy gets a readable measure without being centered in a narrower
   column than the headings — everything shares the same left edge. */
.lwd-prose > :where(p, ul, ol, blockquote, figure, h2, h3, h4) {
	max-width: 760px;
	margin-left: 0;
	margin-right: 0;
}

.lwd-prose > :where(.alignwide, .alignfull, .lwd-color-grid) {
	max-width: none;
}

.lwd-prose > :where(ul, ol) {
	padding-left: 1.25em;
}

.lwd-prose > :where(ul, ol) li + li {
	margin-top: 12px;
}

.lwd-prose > h2 {
	margin-top: 56px;
	margin-bottom: 16px;
}

.lwd-prose > h3 {
	margin-top: 32px;
}

.lwd-prose blockquote.is-style-plain {
	border: 0;
	padding: 0;
	margin: 40px 0;
}

.lwd-prose blockquote.is-style-plain p {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: clamp(1.5rem, 2.6vw, 2.25rem);
	line-height: 1.06;
	letter-spacing: -0.02em;
}

.lwd-prose blockquote cite {
	margin-top: 12px;
}

/* --- Color cards: three equal-height columns --------------------------- */

.lwd-color-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 16px !important;
	align-items: stretch;
}

.lwd-color-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lwd-color-card h3 {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.1;
}

.lwd-color-card p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
}

/* White card needs an edge so it doesn't float on the cream page. */
.lwd-color-card[style*="#ffffff"] {
	box-shadow: inset 0 0 0 1px var(--wp--preset--color--ink-200);
}

@media ( max-width: 700px ) {
	.lwd-color-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media ( max-width: 480px ) {
	.lwd-color-grid {
		grid-template-columns: minmax(0, 1fr) !important;
	}
}

@media ( max-width: 600px ) {
}

/* --- Post lede: opening copy beside the stat ---------------------------- */

.lwd-post-lede {
	margin-top: 0;
}

.lwd-post-lede .wp-block-column > * + * {
	margin-top: 16px;
}

.lwd-post-lede__opening {
	font-size: clamp(1.125rem, 1.6vw, 1.375rem) !important;
	line-height: 1.5;
}

/* --- Color cards: accessible by construction ---------------------------- */

/* The color is a swatch, the text sits on paper. Body copy on a saturated
   fill could not reach 4.5:1 — this way every card passes at 15px. */
.lwd-color-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--wp--preset--color--paper-000, #fffdf9);
	border: 1px solid var(--wp--preset--color--ink-200);
	border-radius: 8px;
	overflow: hidden;
}

.lwd-swatch {
	display: block;
	height: 76px;
	width: 100%;
	flex: 0 0 auto;
	border-bottom: 1px solid var(--wp--preset--color--ink-200);
}

.lwd-color-card__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px;
}

.lwd-color-card__body h3 {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.1;
	color: var(--wp--preset--color--blackish);
}

.lwd-color-card__hex {
	margin: 0 !important;
	font-size: 0.6875rem !important;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--ink-600);
}

.lwd-color-card__body p:not(.lwd-color-card__hex) {
	margin: 6px 0 0 !important;
	font-size: 0.9375rem !important;
	line-height: 1.55;
	color: var(--wp--preset--color--blackish);
}

/* --- Numbered steps: Sunshine circles ---------------------------------- */

.lwd-steps {
	display: flex;
	flex-direction: column;
}

.lwd-step {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	border-top: 1px solid var(--wp--preset--color--ink-200);
	padding: 24px 0;
}

.lwd-step:last-child {
	border-bottom: 1px solid var(--wp--preset--color--ink-200);
}

.lwd-step__num {
	margin: 0 !important;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--wp--preset--color--sunshine);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: 1.25rem !important;
	letter-spacing: -0.02em;
	color: var(--wp--preset--color--blackish);
}

.lwd-step__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-top: 6px;
}

.lwd-step__body h3 {
	margin: 0;
	font-size: clamp(1.25rem, 1.8vw, 1.625rem);
	line-height: 1.05;
}

.lwd-step__body p {
	margin: 0 !important;
	max-width: 640px;
}

@media ( max-width: 600px ) {
	.lwd-step {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 16px;
	}

	.lwd-step__num {
		width: 44px;
		height: 44px;
		font-size: 1rem !important;
	}
}

/* The stat card was stretching to the height of the column beside it, which
   is what put air above and below the number. Let it size to its content. */
.lwd-post-lede > .wp-block-column {
	align-self: flex-start !important;
}

/* Card stretches with the column again, distributing the space around its
   three parts rather than pooling it around the number. */
.lwd-post-lede > .wp-block-column {
	align-self: stretch !important;
}

/* Stat card: content packed to the top, no distributed space. The card no
   longer matches the column height — the air around the number was the cost. */
.lwd-post-lede > .wp-block-column {
	align-self: flex-start !important;
}

/* --- Stat card (canonical) ---------------------------------------------- */

/* One block governs this. Earlier versions stacked stretch, space-around and
   grid rules on top of each other, which is where the stray air came from. */
.lwd-post-lede > .wp-block-column {
	align-self: flex-start !important;
}

.lwd-stat {
	display: block !important;
	height: auto !important;
	text-align: left;
}

.lwd-stat > * {
	margin: 0 !important;
}

.lwd-stat__figure {
	display: block;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: clamp(4rem, 8vw, 6.5rem) !important;
	line-height: 0.8 !important;
	letter-spacing: -0.04em;
	color: var(--wp--preset--color--sunshine);
	/* Trims the font's built-in space above the cap and below the baseline. */
	margin: -0.12em 0 0 -0.03em !important;
}

.lwd-stat__claim {
	display: block;
	font-family: var(--wp--preset--font-family--display);
	font-weight: 800;
	font-size: clamp(1.375rem, 2.1vw, 1.875rem) !important;
	line-height: 1.1 !important;
	letter-spacing: -0.02em;
	max-width: 26ch;
	text-wrap: balance;
	margin-top: 10px !important;
}

.lwd-stat__source {
	display: block;
	font-size: 0.6875rem !important;
	line-height: 1.4 !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--ink-300);
	margin-top: 14px !important;
}

.lwd-stat__source a {
	color: var(--wp--preset--color--sunshine);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.lwd-stat__source a:hover,
.lwd-stat__source a:focus-visible {
	color: var(--wp--preset--color--creamy) !important;
}

/* --- Callout ------------------------------------------------------------ */

/* Add "lwd-callout" to a Group block's Advanced → Additional CSS class(es).
   Add "lwd-callout--ink" or "lwd-callout--sun" alongside it for the other
   two tones. A first paragraph with the class "lwd-callout__label" becomes
   the small uppercase eyebrow. */
.lwd-callout {
	background: var(--wp--preset--color--paper-000, #fffdf9);
	border: 1px solid var(--wp--preset--color--ink-200);
	border-radius: 8px;
	padding: clamp(20px, 2.4vw, 32px);
	margin-top: 32px;
	margin-bottom: 32px;
	max-width: 760px;
}

.lwd-callout > * {
	margin-top: 0;
	margin-bottom: 0;
}

.lwd-callout > * + * {
	margin-top: 12px;
}

.lwd-callout p {
	font-size: 1rem !important;
	line-height: 1.65;
}

.lwd-callout :where(h2, h3, h4) {
	margin: 0;
	font-size: clamp(1.25rem, 1.8vw, 1.5rem);
	line-height: 1.1;
}

.lwd-callout__label {
	font-size: 0.6875rem !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--ink-600);
}

.lwd-callout :where(ul, ol) {
	margin: 0;
	padding-left: 1.15em;
}

.lwd-callout :where(ul, ol) li + li {
	margin-top: 8px;
}

.lwd-callout a {
	color: var(--wp--preset--color--chianti);
}

/* Inverted: one per page at most, per the brand guidelines. */
.lwd-callout--ink {
	background: var(--wp--preset--color--blackish);
	border-color: var(--wp--preset--color--blackish);
	color: var(--wp--preset--color--creamy);
}

.lwd-callout--ink .lwd-callout__label {
	color: var(--wp--preset--color--ink-300);
}

.lwd-callout--ink a {
	color: var(--wp--preset--color--sunshine);
}

.lwd-callout--ink a:hover {
	color: var(--wp--preset--color--creamy) !important;
}

/* Sunshine: for a single "do this next" note. Blackish text throughout, which
   is the only combination that passes contrast on Sunshine. */
.lwd-callout--sun {
	background: var(--wp--preset--color--sunshine);
	border-color: var(--wp--preset--color--sunshine);
	color: var(--wp--preset--color--blackish);
}

.lwd-callout--sun .lwd-callout__label,
.lwd-callout--sun a {
	color: var(--wp--preset--color--blackish);
}

@media ( max-width: 600px ) {
	.lwd-callout {
		padding: 20px;
	}
}


/* Text alternative for the orbit diagram: readable by screen readers and crawlers,
   invisible on screen. Each label is a separate node, so extraction keeps the words apart. */
.lwd-sr-only {
	position: absolute;
	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;
}

.lwd-orbit__sub {
	font-family: Inter, system-ui, sans-serif;
	font-size: 19px;
	fill: var(--wp--preset--color--blackish, #010101);
}

/* Project facts: hide a column whose bound meta field is empty. */
.lwd-project-facts > .wp-block-group:has(p:empty) {
	display: none;
}
