/* tokens.css */
:root {
	--color-brand: #7ac143;
	--color-brand-dark: #3f6f2a;
	--color-graphite: #1f2937;
	--color-graphite-deep: #111827;
	--color-surface: #f7f8f4;
	--color-white: #ffffff;
	--color-border: #dfe5d8;
	--color-muted: #5b6472;
	--color-brand-soft: #eef7e7;
	--color-card: #ffffff;
	--color-focus: #7ac143;
	--font-display: "Saira", "Inter", sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--shadow-elevated: 0 18px 45px rgba(17, 24, 39, 0.14);
	--shadow-card: 0 10px 28px rgba(17, 24, 39, 0.08);
	--container: 1180px;
	--content: 760px;
	--gutter: clamp(1rem, 3vw, 2rem);
	--space-section: clamp(3rem, 7vw, 5.5rem);
	--radius-sm: 4px;
	--radius-md: 6px;
	--header-main-height: 4.5rem;
	--admin-bar-offset: 0px;
}

body.admin-bar {
	--admin-bar-offset: 32px;
}

@media (max-width: 782px) {
	body.admin-bar {
		--admin-bar-offset: 46px;
	}
}


/* base.css */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-graphite);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--color-brand-dark);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--color-graphite-deep);
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid var(--color-focus);
	outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--color-graphite-deep);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.12;
}

h1 {
	font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h2 {
	font-size: clamp(1.75rem, 3vw, 2.7rem);
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
	margin: 0 0 1rem;
}

p,
li {
	max-width: 70ch;
}

ul,
ol {
	margin-top: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	top: calc(var(--admin-bar-offset) + 0.75rem);
	left: 0.75rem;
	z-index: 1000;
	transform: translateY(-150%);
	background: var(--color-graphite-deep);
	color: var(--color-white);
	padding: 0.75rem 1rem;
	font-weight: 700;
	text-decoration: none;
}

.skip-link:focus {
	transform: translateY(0);
}


/* layout.css */
.container {
	width: min(var(--container), calc(100% - 2rem));
	margin-inline: auto;
}

.container--content {
	width: min(var(--content), calc(100% - 2rem));
}

.site-main {
	min-height: 55vh;
}

.section {
	padding-block: var(--space-section);
}

.section--muted {
	background: var(--color-surface);
}

.section--dark {
	background: var(--color-graphite-deep);
	color: rgba(255, 255, 255, 0.82);
}

.body-menu-open {
	overflow: hidden;
}

.site-header {
	position: sticky;
	top: var(--admin-bar-offset);
	z-index: 90;
	background: var(--color-white);
}

.site-header__top {
	display: none;
	background: var(--color-graphite);
	color: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__top-inner {
	min-height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.78rem;
	font-weight: 600;
}

.site-header__top p {
	margin: 0;
}

.site-header__top a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
}

.site-header__top a:hover {
	color: var(--color-brand);
}

.site-header__main {
	border-bottom: 1px solid var(--color-border);
}

.site-header__main-inner {
	min-height: var(--header-main-height);
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	color: var(--color-brand-dark);
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.site-logo--footer {
	background: var(--color-white);
	border-radius: 4px;
	padding: 0.65rem 0.9rem;
}

.site-logo__image {
	width: auto;
	max-height: 44px;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	background: var(--color-white);
	border-radius: 4px;
	padding: 0.65rem 0.9rem;
}

.site-nav--desktop {
	display: none;
	margin-left: auto;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 0.1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__item {
	position: relative;
}

.site-nav__list a,
.site-nav__list .menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.75rem;
	color: var(--color-graphite);
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav__list a:hover,
.site-nav__list a[aria-current="page"],
.site-nav__list .current-menu-item > a {
	color: var(--color-brand-dark);
}

.nav-chevron {
	display: inline-block;
	width: 0.45rem;
	height: 0.45rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 160ms ease;
}

.site-nav__list .menu-item-has-children > a::after {
	display: inline-block;
	width: 0.45rem;
	height: 0.45rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: rotate(45deg) translateY(-1px);
	transition: transform 160ms ease;
}

.site-nav__item--has-mega:hover .nav-chevron,
.site-nav__item--has-mega:focus-within .nav-chevron,
.site-nav__item--has-mega.is-open .nav-chevron,
.site-nav__list .menu-item-has-children:hover > a::after,
.site-nav__list .menu-item-has-children:focus-within > a::after {
	transform: rotate(225deg) translateY(-1px);
}

.mega-menu,
.site-nav__list .sub-menu {
	position: absolute;
	left: 50%;
	top: 100%;
	z-index: 100;
	width: 680px;
	padding-top: 0.55rem;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 0.35rem);
	transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav__item--has-mega:hover .mega-menu,
.site-nav__item--has-mega:focus-within .mega-menu,
.site-nav__item--has-mega.is-open .mega-menu,
.site-nav__list .menu-item-has-children:hover > .sub-menu,
.site-nav__list .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.mega-menu__panel,
.site-nav__list .sub-menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-white);
	box-shadow: var(--shadow-elevated);
	padding: 1.25rem;
}

.mega-menu h2 {
	margin: 0 0 0.35rem;
	color: var(--color-brand-dark);
	font-size: 0.74rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mega-menu ul,
.site-nav__list .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mega-menu a,
.site-nav__list .sub-menu a {
	display: block;
	border-radius: var(--radius-sm);
	padding: 0.45rem 0.5rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.35;
	text-transform: none;
}

.mega-menu a:hover,
.site-nav__list .sub-menu a:hover {
	background: var(--color-brand-soft);
	color: var(--color-brand-dark);
}

.mega-menu__all {
	grid-column: 1 / -1;
	border-top: 1px solid var(--color-border);
	padding-top: 0.75rem;
}

.mega-menu__all a {
	display: inline-flex;
	gap: 0.3rem;
	color: var(--color-brand-dark);
	font-weight: 700;
}

.site-header__cta {
	display: none;
}

.site-header__toggle {
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	border: 1px solid var(--color-border);
	background: var(--color-white);
	color: var(--color-graphite);
}

.site-header__toggle:hover,
.mobile-menu__close:hover {
	background: var(--color-brand-soft);
}

.site-header__toggle-line,
.site-header__toggle-line::before,
.site-header__toggle-line::after {
	display: block;
	width: 1.2rem;
	height: 2px;
	background: currentColor;
	content: "";
}

.site-header__toggle-line::before {
	transform: translateY(-0.45rem);
}

.site-header__toggle-line::after {
	transform: translateY(0.35rem);
}

.mobile-menu {
	position: fixed;
	inset: var(--admin-bar-offset) 0 0 auto;
	z-index: 110;
	width: min(92vw, 25rem);
	background: var(--color-white);
	box-shadow: var(--shadow-elevated);
	overflow-y: auto;
}

.mobile-menu-backdrop {
	position: fixed;
	inset: var(--admin-bar-offset) 0 0;
	z-index: 100;
	background: rgba(17, 24, 39, 0.38);
}

.mobile-menu__panel {
	padding: 1rem;
}

.mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 1rem;
}

.mobile-menu__title {
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
}

.mobile-menu__close {
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--color-border);
	background: var(--color-white);
	font-size: 1.5rem;
}

.mobile-menu__nav ul {
	margin: 1rem 0;
	padding: 0;
	list-style: none;
}

.mobile-menu__nav a,
.mobile-menu__phone,
.mobile-menu__submenu-toggle {
	display: block;
	width: 100%;
	padding: 0.85rem 0.5rem;
	border: 0;
	background: transparent;
	color: var(--color-graphite);
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 700;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
}

.mobile-menu__nav a:hover,
.mobile-menu__phone:hover,
.mobile-menu__submenu-toggle:hover {
	background: var(--color-brand-soft);
}

.mobile-menu__submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-menu__submenu-toggle[aria-expanded="true"] .nav-chevron {
	transform: rotate(225deg) translateY(-1px);
}

.mobile-menu__submenu {
	padding: 0 0 0.75rem 1rem;
}

.mobile-menu__product-group {
	padding-block: 0.4rem;
}

.mobile-menu__product-group h3 {
	margin: 0;
	padding-inline: 0.5rem;
	color: var(--color-brand-dark);
	font-size: 0.72rem;
	text-transform: uppercase;
}

.mobile-menu__phone {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 0.25rem;
	font-family: var(--font-body);
	font-weight: 600;
	text-transform: none;
}

.site-header__phone-icon {
	display: inline-block;
	width: 0.85rem;
	height: 0.85rem;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.site-footer {
	margin-top: 4rem;
	background: var(--color-graphite-deep);
	color: rgba(255, 255, 255, 0.82);
}

.site-footer__stripe {
	height: 0.25rem;
	background: var(--color-brand);
}

.site-footer__inner {
	padding-block: clamp(3.5rem, 6vw, 4rem) 1.5rem;
}

.site-footer__grid {
	display: grid;
	gap: 2.5rem;
}

.site-footer h2,
.site-footer h3 {
	color: var(--color-white);
}

.site-footer h2 {
	color: var(--color-brand);
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-footer h3 {
	font-size: 0.95rem;
	text-transform: uppercase;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--color-brand);
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__brand p {
	max-width: 24rem;
	margin-top: 1.5rem;
	color: rgba(255, 255, 255, 0.7);
}

.site-footer__address {
	display: grid;
	gap: 0.35rem;
	margin-top: 1rem;
	font-style: normal;
}

.site-footer__product-grid {
	display: grid;
	gap: 1.5rem;
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.8rem;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__menu,
.site-footer__legal-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu--products {
	display: grid;
	gap: 1.5rem;
}

.site-footer__menu--products > .menu-item > a {
	display: inline-block;
	margin-bottom: 0.45rem;
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
}

.site-footer__menu--products .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__legal-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
}

@media (min-width: 768px) {
	.site-header__top {
		display: block;
	}

	.site-header__cta {
		display: inline-flex;
	}

	.site-footer__product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__menu--products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

@media (min-width: 1180px) {
	.site-nav--desktop {
		display: block;
	}

	.site-header__toggle {
		display: none;
	}

	.site-footer__grid {
		grid-template-columns: 4fr 5fr 3fr;
	}
}


/* components.css */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 2.75rem;
	padding: 0.75rem 1.1rem;
	border: 1px solid transparent;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button:active {
	transform: translateY(0);
}

.button[disabled],
.button.is-disabled {
	cursor: not-allowed;
	opacity: 0.58;
	transform: none;
}

.button.is-loading {
	position: relative;
	color: transparent;
}

.button.is-loading::after {
	position: absolute;
	width: 1rem;
	height: 1rem;
	border: 2px solid currentColor;
	border-color: var(--color-graphite-deep) transparent var(--color-graphite-deep) var(--color-graphite-deep);
	border-radius: 999px;
	content: "";
	animation: plastcell-spin 800ms linear infinite;
}

.button--primary {
	background: var(--color-brand);
	color: var(--color-graphite-deep);
}

.button--primary:hover {
	background: var(--color-brand-dark);
	color: var(--color-white);
}

.button--secondary {
	background: var(--color-brand-dark);
	color: var(--color-white);
}

.button--secondary:hover {
	background: var(--color-graphite-deep);
	color: var(--color-white);
}

.button--outline,
.button--ghost {
	border-color: var(--color-border);
	background: var(--color-white);
	color: var(--color-graphite);
}

.button--outline:hover,
.button--ghost:hover {
	border-color: var(--color-brand-dark);
	color: var(--color-brand-dark);
}

.button--dark {
	background: var(--color-graphite-deep);
	color: var(--color-white);
}

.button--dark:hover {
	background: var(--color-graphite);
	color: var(--color-white);
}

.button--light {
	background: var(--color-white);
	color: var(--color-graphite-deep);
}

.button--light:hover {
	background: var(--color-brand-soft);
	color: var(--color-brand-dark);
}

.button--text {
	min-height: auto;
	padding: 0;
	background: transparent;
	color: var(--color-brand-dark);
}

.button--text:hover {
	color: var(--color-graphite-deep);
}

.button--icon {
	width: 2.75rem;
	padding-inline: 0;
	border-color: var(--color-border);
	background: var(--color-white);
	color: var(--color-graphite);
}

.button--full {
	width: 100%;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.eyebrow {
	margin-bottom: 0.9rem;
	color: var(--color-brand-dark);
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.lead-text {
	max-width: 48rem;
	color: var(--color-muted);
	font-size: clamp(1.05rem, 2vw, 1.22rem);
	line-height: 1.7;
}

.page-hero,
.hero-shell {
	background: var(--color-surface);
	padding-block: clamp(3rem, 7vw, 6rem);
}

.hero-shell--home {
	min-height: 58vh;
	display: grid;
	align-items: center;
}

.page-hero__description,
.hero-shell__content {
	max-width: 44rem;
	color: var(--color-muted);
	font-size: 1.1rem;
}

.global-hero {
	overflow: hidden;
	border-bottom: 1px solid var(--color-border);
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.global-hero--light {
	background: var(--color-surface);
	color: var(--color-graphite);
}

.global-hero--dark {
	background: var(--color-graphite);
	color: var(--color-white);
}

.global-hero--dark h1,
.global-hero--dark h2 {
	color: var(--color-white);
}

.global-hero__grid {
	display: grid;
	align-items: center;
	gap: clamp(2rem, 5vw, 4rem);
}

.global-hero--centered .global-hero__grid,
.global-hero--compact .global-hero__grid {
	display: block;
}

.global-hero--centered .global-hero__content {
	max-width: 48rem;
	margin-inline: auto;
	text-align: center;
}

.global-hero__content {
	max-width: 42rem;
}

.global-hero__lead {
	color: var(--color-muted);
	font-size: clamp(1rem, 2vw, 1.16rem);
	line-height: 1.75;
}

.global-hero--dark .global-hero__lead {
	color: rgba(255, 255, 255, 0.76);
}

.global-hero__actions {
	margin-top: 1.5rem;
}

.global-hero__breadcrumbs .breadcrumbs {
	margin-bottom: 1.25rem;
	padding: 0;
	border: 0;
	background: transparent;
}

.breadcrumbs {
	padding-block: 0.85rem;
	border-bottom: 1px solid var(--color-border);
	background: var(--color-white);
	font-size: 0.88rem;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
	margin-left: 0.45rem;
	color: var(--color-muted);
	content: "/";
}

.breadcrumbs a {
	text-decoration: none;
}

.breadcrumbs span[aria-current="page"] {
	display: inline-block;
	max-width: min(44vw, 28rem);
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}

.entry {
	padding-block: var(--space-section);
}

.entry__content > * {
	margin-top: 0;
}

.entry__content > * + * {
	margin-top: 1.25rem;
}

.entry__media {
	margin-block: 2rem;
}

.entry__media img {
	width: 100%;
	border-radius: 4px;
}

.article-header {
	padding-block: clamp(3rem, 6vw, 5rem);
	background: var(--color-surface);
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.card-grid {
	display: grid;
	gap: 1.5rem;
}

.card-grid--two,
.card-grid--three,
.card-grid--four {
	grid-template-columns: 1fr;
}

.card {
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-card);
	box-shadow: var(--shadow-card);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.card:hover,
.product-card:hover,
.icon-card:hover {
	border-color: rgba(122, 193, 67, 0.45);
	box-shadow: var(--shadow-elevated);
	transform: translateY(-2px);
}

.card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.card__body {
	padding: 1.25rem;
}

.card__meta {
	color: var(--color-muted);
	font-size: 0.85rem;
}

.card__title {
	font-size: 1.2rem;
}

.card__title a {
	color: inherit;
	text-decoration: none;
}

.product-card,
.icon-card {
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-white);
	box-shadow: var(--shadow-card);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card__media {
	display: block;
	background: var(--color-surface);
}

.product-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.product-card__body,
.icon-card {
	padding: 1.25rem;
}

.product-card h3,
.icon-card h3 {
	font-size: 1.15rem;
}

.product-card h3 a {
	color: inherit;
	text-decoration: none;
}

.product-card p,
.icon-card p {
	color: var(--color-muted);
}

.icon-card__icon {
	display: inline-flex;
	width: 2.4rem;
	height: 2.4rem;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	border-radius: var(--radius-sm);
	background: var(--color-brand-soft);
	color: var(--color-brand-dark);
}

.cta-section {
	display: grid;
	gap: 1rem;
	align-items: center;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-radius: 1rem;
	background: var(--color-brand);
	color: var(--color-graphite-deep);
	box-shadow: var(--shadow-elevated);
}

.cta-section h2 {
	color: var(--color-graphite-deep);
	margin-bottom: 0;
}

.cta-section .eyebrow {
	color: rgba(17, 24, 39, 0.68);
}

.faq-accordion__item {
	border-bottom: 1px solid var(--color-border);
}

.faq-accordion button {
	position: relative;
	width: 100%;
	padding: 1.1rem 2rem 1.1rem 0;
	border: 0;
	background: transparent;
	color: var(--color-graphite-deep);
	font-family: var(--font-display);
	font-weight: 700;
	text-align: left;
}

.faq-accordion button::after {
	position: absolute;
	right: 0.25rem;
	top: 50%;
	width: 0.65rem;
	height: 0.65rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: translateY(-65%) rotate(45deg);
	transition: transform 180ms ease;
}

.faq-accordion button[aria-expanded="true"]::after {
	transform: translateY(-35%) rotate(225deg);
}

.faq-accordion [role="region"] {
	padding-bottom: 1rem;
	color: var(--color-muted);
}

.faq-accordion [data-accordion-panel] {
	display: grid;
	grid-template-rows: 1fr;
	overflow: hidden;
}

.form-shell,
.empty-state,
.related-section,
.editorial-notice {
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	padding: 1.5rem;
}

.search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: stretch;
}

.search-field {
	min-height: 2.75rem;
	flex: 1 1 16rem;
	border: 1px solid var(--color-border);
	padding: 0.7rem 0.9rem;
}

.search-field:focus,
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
	border-color: var(--color-brand-dark);
	outline: 3px solid rgba(122, 193, 67, 0.25);
	outline-offset: 0;
}

.search-panel {
	margin-top: 1.5rem;
}

.not-found {
	padding-block: clamp(4rem, 9vw, 7rem);
	background: var(--color-surface);
}

.not-found__inner {
	max-width: 760px;
}

.post-navigation {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
}

.pagination {
	margin-top: 2rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.page-numbers {
	display: inline-flex;
	min-width: 2.4rem;
	min-height: 2.4rem;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-border);
	text-decoration: none;
}

.page-numbers.current {
	background: var(--color-brand);
	color: var(--color-graphite-deep);
}

.badge {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--color-border);
	padding: 0.25rem 0.55rem;
	color: var(--color-brand-dark);
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
}

.image-frame {
	position: relative;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
}

.image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-frame--16x10 {
	aspect-ratio: 16 / 10;
}

.image-frame--4x3 {
	aspect-ratio: 4 / 3;
}

.image-frame__stripe {
	position: absolute;
	inset: auto 0 0;
	height: 0.25rem;
	background: var(--color-brand);
}

.split-layout {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.form-grid {
	display: grid;
	gap: 1rem;
}

.form-field label {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--color-graphite-deep);
	font-family: var(--font-display);
	font-size: 0.86rem;
	font-weight: 700;
	text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
	width: 100%;
	min-height: 2.9rem;
	border: 1px solid var(--color-border);
	background: var(--color-white);
	padding: 0.75rem 0.9rem;
	color: var(--color-graphite);
}

.form-field textarea {
	min-height: 8rem;
	resize: vertical;
}

.component-reference {
	border-bottom: 1px solid var(--color-border);
	background: var(--color-surface);
}

@keyframes plastcell-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (min-width: 720px) {
	.card-grid--posts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.card-grid--two {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cta-section {
		grid-template-columns: 1fr auto;
	}

	.split-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.split-layout--reverse > :first-child {
		order: 2;
	}
}

@media (min-width: 1040px) {
	.global-hero--split .global-hero__grid {
		grid-template-columns: 5fr 7fr;
	}

	.card-grid--posts,
	.card-grid--three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.card-grid--four {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	.button,
	.card,
	.product-card,
	.icon-card,
	.faq-accordion button::after {
		transition: none;
	}
}


/* utilities.css */
.alignwide {
	max-width: var(--container);
}

.alignfull {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.has-brand-color {
	color: var(--color-brand);
}

.has-brand-background-color {
	background-color: var(--color-brand);
}

.has-brand-dark-color {
	color: var(--color-brand-dark);
}

.has-brand-dark-background-color {
	background-color: var(--color-brand-dark);
}

.has-graphite-color {
	color: var(--color-graphite);
}

.has-graphite-background-color {
	background-color: var(--color-graphite);
}

.has-graphite-deep-color {
	color: var(--color-graphite-deep);
}

.has-graphite-deep-background-color {
	background-color: var(--color-graphite-deep);
}

.has-surface-color {
	color: var(--color-surface);
}

.has-surface-background-color {
	background-color: var(--color-surface);
}

.has-white-color {
	color: var(--color-white);
}

.has-white-background-color {
	background-color: var(--color-white);
}



/* main.css */
/* Home page */

.home-section {
	padding-block: var(--space-section);
}

.home-section--surface {
	background: var(--color-surface);
}

.home-section--graphite {
	background: var(--color-graphite);
	color: var(--color-white);
}

.home-section--deep {
	background: var(--color-graphite-deep);
	color: var(--color-white);
}

.home-section--graphite h2,
.home-section--graphite h3,
.home-section--deep h2,
.home-section--deep h3 {
	color: var(--color-white);
}

.home-section--graphite .eyebrow,
.home-section--deep .eyebrow {
	color: var(--color-brand);
}

.home-section__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
}

.home-section__header h2,
.home-section__intro h2 {
	font-size: clamp(2rem, 4vw, 2.7rem);
}

.home-section__intro {
	max-width: 42rem;
}

.home-section__intro p:not(.eyebrow),
.home-lead,
.home-copy {
	color: rgba(31, 41, 55, 0.84);
	line-height: 1.75;
}

.home-section--graphite .home-lead,
.home-section--deep .home-lead {
	color: rgba(255, 255, 255, 0.8);
}

.home-text-link {
	display: inline-flex;
	gap: 0.35rem;
	align-items: center;
	margin-top: 2rem;
	color: var(--color-brand-dark);
	font-family: var(--font-display);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.home-text-link:hover {
	text-decoration: underline;
}

.home-split {
	display: grid;
	gap: clamp(2.5rem, 6vw, 4rem);
	align-items: center;
}

.home-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--color-graphite-deep);
	color: var(--color-white);
	outline: none;
}

.home-hero__slides {
	position: relative;
}

.home-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 700ms ease;
}

.home-hero__slide.is-current {
	position: relative;
	opacity: 1;
	pointer-events: auto;
}

.home-hero picture,
.home-hero img {
	position: absolute;
	inset: 0;
	z-index: -3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: linear-gradient(105deg, rgba(17, 24, 39, 0.86) 0%, rgba(17, 24, 39, 0.62) 45%, rgba(17, 24, 39, 0) 75%);
}

.home-hero__stripe {
	position: absolute;
	inset: auto 0 0;
	z-index: -1;
	height: 0.25rem;
	background: var(--color-brand);
}

.home-hero__inner {
	position: relative;
	display: flex;
	min-height: 460px;
	align-items: flex-end;
	padding-block: 3rem;
}

.home-hero__content {
	max-width: 42rem;
}

.home-hero .eyebrow {
	color: var(--color-brand);
}

.home-hero h2 {
	color: var(--color-white);
	font-size: clamp(2rem, 6vw, 4rem);
}

.home-hero p:not(.eyebrow) {
	max-width: 36rem;
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(1rem, 2vw, 1.15rem);
}

.home-hero__button {
	margin-top: 1rem;
}

.home-hero__controls {
	position: absolute;
	inset: auto 0 1rem;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-inline: clamp(0.75rem, 3vw, 1.5rem);
}

.home-hero__arrows,
.home-hero__dots {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-hero__control {
	display: inline-flex;
	width: 2.5rem;
	height: 2.5rem;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.32);
	background: rgba(0, 0, 0, 0.3);
	color: var(--color-white);
	backdrop-filter: blur(10px);
}

.home-hero__control:hover,
.home-hero__control:focus-visible {
	background: var(--color-brand);
	color: var(--color-graphite-deep);
}

.home-hero__pause-icon {
	width: 0.8rem;
	height: 0.9rem;
	border-inline: 3px solid currentColor;
}

.home-hero__control[aria-pressed="true"] .home-hero__pause-icon {
	border: 0;
	border-left: 0.75rem solid currentColor;
	border-top: 0.45rem solid transparent;
	border-bottom: 0.45rem solid transparent;
}

.home-hero__dots button {
	display: block;
	width: 1.5rem;
	height: 0.38rem;
	border: 0;
	background: rgba(255, 255, 255, 0.42);
	transition: width 180ms ease, background-color 180ms ease;
}

.home-hero__dots button[aria-current="true"] {
	width: 2.5rem;
	background: var(--color-brand);
}

.home-intro__grid {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.home-intro h2,
.home-personalized h2,
.home-bobinas h2,
.home-responsibility h2,
.home-advantages h2 {
	font-size: clamp(2rem, 4vw, 2.7rem);
}

.home-copy {
	margin-top: 1.25rem;
}

.home-intro .button-row {
	margin-top: 1.75rem;
}

.home-summary {
	border-left: 4px solid var(--color-brand);
	background: var(--color-surface);
	padding: 1.5rem;
}

.home-summary dl {
	display: grid;
	gap: 1rem;
	margin: 0;
}

.home-summary dt {
	color: rgba(31, 41, 55, 0.6);
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
}

.home-summary dd {
	margin: 0.15rem 0 0;
	color: var(--color-graphite);
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
}

.home-product-tiles {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin: 2.5rem 0 0;
	padding: 0;
	list-style: none;
}

.home-product-tiles li,
.home-segment-grid li,
.home-process__grid li,
.home-advantage-list li {
	max-width: none;
}

.home-product-tile {
	min-height: 260px;
	background: var(--color-graphite-deep);
}

.home-product-tile a {
	position: relative;
	isolation: isolate;
	display: block;
	min-height: inherit;
	overflow: hidden;
	color: var(--color-white);
	text-decoration: none;
}

.home-product-tile img {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
}

.home-product-tile picture,
.home-segment-grid picture,
.home-image-offset picture {
	display: contents;
}

.home-product-tile:hover img {
	transform: scale(1.05);
}

.home-product-tile__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.45), transparent);
}

.home-product-tile__content {
	position: absolute;
	inset: auto 0 0;
	padding: 1.25rem;
}

.home-product-tile__title {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
}

.home-product-tile__desc {
	display: block;
	max-width: 28rem;
	margin-top: 0.25rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
}

.home-product-tile__cta {
	display: inline-flex;
	margin-top: 0.75rem;
	color: var(--color-brand);
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.home-image-offset {
	position: relative;
}

.home-image-offset img,
.home-framed-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.home-bobinas .home-framed-image {
	aspect-ratio: 5 / 4;
}

.home-image-offset span {
	position: absolute;
	right: -1rem;
	bottom: -1rem;
	display: none;
	width: 6rem;
	height: 6rem;
	background: var(--color-brand);
}

.home-check-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin: 1.5rem 0 1.75rem;
	padding: 0;
	list-style: none;
}

.home-check-list li {
	position: relative;
	padding-left: 1.1rem;
	color: var(--color-graphite);
	font-size: 0.95rem;
}

.home-check-list li::before {
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 0.5rem;
	height: 0.5rem;
	background: var(--color-brand);
	content: "";
}

.button--light-outline {
	border-color: rgba(255, 255, 255, 0.4);
	background: transparent;
	color: var(--color-white);
}

.button--light-outline:hover {
	background: var(--color-white);
	color: var(--color-graphite-deep);
}

.home-segment-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 2.5rem 0 0;
	padding: 0;
	list-style: none;
}

.home-segment-grid li {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--color-graphite-deep);
}

.home-segment-grid img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	opacity: 0.9;
	transition: transform 500ms ease, opacity 500ms ease;
}

.home-segment-grid li:hover img {
	transform: scale(1.05);
	opacity: 1;
}

.home-segment-grid span {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(17, 24, 39, 0.86), transparent);
}

.home-segment-grid p {
	position: absolute;
	inset: auto 0 0;
	margin: 0;
	padding: 1rem;
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 700;
	text-transform: uppercase;
}

.home-process__grid {
	display: grid;
	gap: 1rem;
	margin: 2.5rem 0 0;
	padding: 0;
	list-style: none;
}

.home-process__grid li {
	border-top: 2px solid var(--color-brand);
	background: var(--color-white);
	padding: 1.25rem;
}

.home-process__number {
	margin: 0;
	color: var(--color-brand-dark);
	font-family: var(--font-display);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1;
}

.home-process__grid h3 {
	margin-top: 0.75rem;
	font-size: 1.25rem;
}

.home-process__grid p:last-child {
	color: rgba(31, 41, 55, 0.75);
	font-size: 0.95rem;
}

.home-advantages__grid {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
}

.home-advantage-list {
	display: grid;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-advantage-list li {
	border: 1px solid var(--color-border);
	background: var(--color-white);
	padding: 1.25rem;
}

.home-advantage-list span {
	display: inline-flex;
	width: 1.6rem;
	height: 1.6rem;
	align-items: center;
	justify-content: center;
	background: var(--color-brand-soft);
	color: var(--color-brand-dark);
	font-family: var(--font-display);
	font-weight: 800;
}

.home-advantage-list h3 {
	margin-top: 0.85rem;
	font-size: 1rem;
	text-transform: uppercase;
}

.home-advantage-list p {
	color: rgba(31, 41, 55, 0.75);
	font-size: 0.92rem;
}

.home-article-grid {
	display: grid;
	gap: 1.25rem;
	margin-top: 2rem;
}

.home-article-card {
	display: flex;
	min-height: 13rem;
	flex-direction: column;
	border: 1px solid var(--color-border);
	border-radius: 0.75rem;
	background: var(--color-white);
	padding: 1.25rem;
	box-shadow: var(--shadow-card);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-article-card:hover {
	border-color: rgba(122, 193, 67, 0.45);
	box-shadow: var(--shadow-elevated);
	transform: translateY(-2px);
}

.home-article-card p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
}

.home-article-card h3 {
	margin-top: 0.5rem;
	font-size: 1.05rem;
	line-height: 1.35;
}

.home-article-card h3 a {
	color: inherit;
	text-decoration: none;
}

.home-article-card > a {
	margin-top: auto;
	padding-top: 1rem;
	color: var(--color-brand-dark);
	font-weight: 700;
	text-decoration: none;
}

.home-faq__grid {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
}

.home-final-cta {
	padding-block: var(--space-section);
}

.cta-section p:not(.eyebrow) {
	max-width: 42rem;
	margin-top: 0.75rem;
	color: rgba(17, 24, 39, 0.82);
}

.cta-section__phone {
	border-color: rgba(17, 24, 39, 0.24);
	background: transparent;
	color: var(--color-graphite-deep);
}

@media (min-width: 640px) {
	.home-summary dl,
	.home-check-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.home-hero__inner {
		min-height: 520px;
	}

	.home-product-tiles {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		grid-auto-rows: minmax(260px, auto);
	}

	.home-product-tile--large {
		grid-column: span 2;
	}

	.home-segment-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-process__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-article-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.home-hero__inner {
		min-height: 600px;
		align-items: center;
		padding-block: 5rem;
	}

	.home-intro__grid,
	.home-split,
	.home-advantages__grid,
	.home-faq__grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}

	.home-intro__text {
		grid-column: span 7;
	}

	.home-summary {
		grid-column: span 5;
	}

	.home-split > * {
		grid-column: span 6;
	}

	.home-advantages__grid > div {
		grid-column: span 5;
	}

	.home-advantage-list {
		grid-column: span 7;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-faq__grid > div:first-child {
		grid-column: span 4;
	}

	.home-faq__grid > div:last-child {
		grid-column: span 8;
	}

	.home-image-offset span {
		display: block;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero__slide,
	.home-hero__dots button,
	.home-product-tile img,
	.home-segment-grid img,
	.home-article-card {
		transition: none;
	}
}

