:root {
	--gwh-ink: #10212b;
	--gwh-ink-soft: #1f3440;
	--gwh-teal: #1f5562;
	--gwh-teal-strong: #143d47;
	--gwh-amber: #c9873f;
	--gwh-amber-soft: #ebd3b8;
	--gwh-mist: #eef3f4;
	--gwh-sand: #f6f1e8;
	--gwh-white: #ffffff;
	--gwh-text: #344955;
	--gwh-muted: #627883;
	--gwh-border: rgba(16, 33, 43, 0.12);
	--gwh-shadow-sm: 0 10px 24px rgba(16, 33, 43, 0.06);
	--gwh-shadow-md: 0 24px 50px rgba(16, 33, 43, 0.12);
	--gwh-shadow-lg: 0 30px 80px rgba(11, 26, 34, 0.18);
	--gwh-radius-sm: 14px;
	--gwh-radius-md: 22px;
	--gwh-radius-lg: 34px;
	--gwh-space-1: 0.375rem;
	--gwh-space-2: 0.75rem;
	--gwh-space-3: 1rem;
	--gwh-space-4: 1.5rem;
	--gwh-space-5: 2rem;
	--gwh-space-6: 3rem;
	--gwh-space-7: 4rem;
	--gwh-space-8: 5rem;
	--gwh-container: min(1180px, calc(100% - 32px));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", "Segoe UI", sans-serif;
	color: var(--gwh-text);
	background: linear-gradient(180deg, #fffdf9 0%, #f6f1e8 100%);
	line-height: 1.65;
}

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

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

a {
	color: var(--gwh-teal);
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--gwh-teal-strong);
}

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

h1,
h2,
h3,
h4 {
	color: var(--gwh-ink);
	line-height: 1.08;
	margin: 0 0 var(--gwh-space-3);
}

h1,
.gwh-page-hero h1,
.gwh-hero h1 {
	font-family: "Newsreader", Georgia, serif;
	font-size: clamp(2.8rem, 5vw, 5.4rem);
	font-weight: 700;
	letter-spacing: -0.04em;
}

h2 {
	font-family: "Newsreader", Georgia, serif;
	font-size: clamp(2rem, 3vw, 3.15rem);
	letter-spacing: -0.035em;
}

h3 {
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
	font-weight: 700;
}

p,
li {
	font-size: 1rem;
	margin-top: 0;
}

ul {
	padding-left: 1.15rem;
}

.gwh-container {
	width: var(--gwh-container);
	margin: 0 auto;
}

.gwh-site-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.gwh-site-main {
	flex: 1;
}

.gwh-skip-link {
	position: absolute;
	left: -999px;
	top: 0;
}

.gwh-skip-link:focus {
	left: 12px;
	top: 12px;
	z-index: 999;
	background: var(--gwh-ink);
	color: var(--gwh-white);
	padding: 0.7rem 1rem;
	border-radius: 999px;
}

.gwh-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gwh-teal);
	margin-bottom: var(--gwh-space-3);
}

.gwh-eyebrow::before {
	content: "";
	width: 42px;
	height: 1px;
	background: currentColor;
	opacity: 0.45;
}

.gwh-topbar {
	background: var(--gwh-ink);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
}

.gwh-topbar__inner,
.gwh-header__inner,
.gwh-footer-bottom,
.gwh-inline-actions,
.gwh-topbar__links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.gwh-topbar__inner {
	padding: 0.7rem 0;
}

.gwh-topbar__inner p {
	margin: 0;
}

.gwh-topbar a {
	color: rgba(255, 255, 255, 0.88);
}

.gwh-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(24px);
	background: rgba(246, 241, 232, 0.86);
	border-bottom: 1px solid rgba(16, 33, 43, 0.08);
}

.gwh-header__inner {
	padding: 1rem 0;
}

.gwh-branding__link {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	color: var(--gwh-ink);
}

.gwh-branding__mark {
	width: 50px;
	height: 50px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	background: linear-gradient(140deg, var(--gwh-teal), var(--gwh-ink));
	color: var(--gwh-white);
	font-weight: 800;
	box-shadow: var(--gwh-shadow-sm);
}

.gwh-branding strong {
	display: block;
	font-size: 1.05rem;
}

.gwh-branding small {
	display: block;
	color: var(--gwh-muted);
	font-size: 0.84rem;
}

.gwh-site-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.gwh-nav-list,
.gwh-nav-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 1.3rem;
}

.gwh-nav-list a {
	color: var(--gwh-ink);
	font-weight: 600;
}

.gwh-nav-cta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.gwh-nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--gwh-border);
	border-radius: 999px;
	padding: 0.65rem 1rem;
	color: var(--gwh-ink);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gwh-nav-toggle:hover,
.gwh-nav-toggle:focus-visible,
.gwh-nav-toggle[aria-expanded="true"] {
	background: rgba(16, 33, 43, 0.08);
	border-color: rgba(16, 33, 43, 0.16);
	box-shadow: var(--gwh-shadow-sm);
}

.gwh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 1.35rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 0.96rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gwh-button:hover,
.gwh-button:focus-visible {
	transform: translateY(-1px);
}

.gwh-button--primary {
	background: linear-gradient(135deg, var(--gwh-teal), var(--gwh-ink));
	color: var(--gwh-white);
	box-shadow: var(--gwh-shadow-sm);
}

.gwh-button--secondary {
	background: var(--gwh-amber);
	color: var(--gwh-ink);
}

.gwh-button--ghost {
	background: rgba(255, 255, 255, 0.72);
	color: var(--gwh-ink);
	border-color: rgba(16, 33, 43, 0.18);
}

.gwh-button--ghost-light {
	background: transparent;
	color: var(--gwh-white);
	border-color: rgba(255, 255, 255, 0.32);
}

.gwh-text-link {
	font-weight: 700;
}

.gwh-hero,
.gwh-page-hero {
	padding: 5.5rem 0 4rem;
}

.gwh-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(circle at top right, rgba(201, 135, 63, 0.16), transparent 30%),
		radial-gradient(circle at top left, rgba(31, 85, 98, 0.18), transparent 32%);
}

.gwh-hero::before,
.gwh-hero::after,
.gwh-section--ink::before,
.gwh-section--ink::after,
.gwh-cta-band::before {
	content: "";
	position: absolute;
	pointer-events: none;
}

.gwh-hero::before,
.gwh-hero::after {
	border-radius: 999px;
	z-index: 0;
}

.gwh-hero::before {
	top: -11rem;
	right: -7rem;
	width: 30rem;
	height: 30rem;
	background: radial-gradient(circle, rgba(201, 135, 63, 0.28) 0%, rgba(201, 135, 63, 0) 68%);
	animation: gwh-float 18s ease-in-out infinite alternate;
}

.gwh-hero::after {
	left: -13rem;
	bottom: -18rem;
	width: 36rem;
	height: 36rem;
	background: radial-gradient(circle, rgba(31, 85, 98, 0.22) 0%, rgba(31, 85, 98, 0) 72%);
	animation: gwh-float-reverse 24s ease-in-out infinite alternate;
}

.gwh-hero__grid,
.gwh-two-column,
.gwh-detail-grid,
.gwh-solution-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: var(--gwh-space-6);
	align-items: start;
}

.gwh-hero__grid,
.gwh-section--ink > .gwh-container,
.gwh-cta-band > * {
	position: relative;
	z-index: 1;
}

.gwh-hero__content p,
.gwh-page-hero__copy {
	font-size: 1.12rem;
	max-width: 720px;
	color: var(--gwh-muted);
}

.gwh-hero__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: var(--gwh-space-5) 0 0;
}

.gwh-hero__metrics li,
.gwh-hero-card,
.gwh-feature-card,
.gwh-post-card,
.gwh-highlight-panel,
.gwh-detail-card,
.gwh-why-card,
.gwh-form-shell,
.gwh-cta-band {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(16, 33, 43, 0.08);
	border-radius: var(--gwh-radius-md);
	box-shadow: var(--gwh-shadow-sm);
}

.gwh-hero__metrics li {
	padding: 1.2rem;
}

.gwh-hero__metrics strong {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--gwh-ink);
}

.gwh-hero__metrics span {
	color: var(--gwh-muted);
	font-size: 0.92rem;
}

.gwh-hero__panel {
	display: grid;
	gap: 1rem;
}

.gwh-hero-card {
	padding: 1.5rem;
}

.gwh-hero-card--accent {
	background: linear-gradient(180deg, rgba(31, 85, 98, 0.98), rgba(16, 33, 43, 0.98));
	color: rgba(255, 255, 255, 0.88);
	box-shadow: var(--gwh-shadow-lg);
}

.gwh-hero-card--accent h2,
.gwh-hero-card--accent li,
.gwh-hero-card--accent span {
	color: inherit;
}

.gwh-credibility-strip {
	border-top: 1px solid rgba(16, 33, 43, 0.08);
	border-bottom: 1px solid rgba(16, 33, 43, 0.08);
	background: rgba(255, 255, 255, 0.7);
}

.gwh-credibility-strip ul {
	list-style: none;
	padding: 1.2rem 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.gwh-credibility-strip li {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--gwh-ink-soft);
}

.gwh-page-section {
	padding: var(--gwh-space-7) 0;
}

.gwh-section--sand {
	background: rgba(246, 241, 232, 0.9);
}

.gwh-section--mist {
	background: rgba(238, 243, 244, 0.92);
}

.gwh-section--ink {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(160deg, var(--gwh-ink), #1a3240);
	color: rgba(255, 255, 255, 0.88);
}

.gwh-section--ink::before {
	top: -8rem;
	right: -8rem;
	width: 24rem;
	height: 24rem;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(201, 135, 63, 0.2) 0%, rgba(201, 135, 63, 0) 70%);
	animation: gwh-breathe 20s ease-in-out infinite;
}

.gwh-section--ink::after {
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 170px 170px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 82%);
	opacity: 0.16;
	animation: gwh-grid-shift 28s linear infinite;
}

.gwh-section--ink h2,
.gwh-section--ink h3,
.gwh-section--ink p,
.gwh-section--ink li,
.gwh-section--ink .gwh-eyebrow {
	color: inherit;
}

.gwh-section-heading {
	max-width: 760px;
	margin-bottom: var(--gwh-space-5);
}

.gwh-card-grid,
.gwh-post-grid,
.gwh-why-grid {
	display: grid;
	gap: 1.35rem;
}

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

.gwh-feature-card,
.gwh-why-card {
	padding: 1.6rem;
}

.gwh-feature-card p,
.gwh-why-card p {
	color: var(--gwh-muted);
	margin-bottom: 0;
}

.gwh-post-card {
	overflow: hidden;
}

.gwh-post-card__media,
.gwh-card__media,
.gwh-post-card__media--placeholder,
.gwh-card__media--placeholder {
	aspect-ratio: 4 / 3;
	width: 100%;
	object-fit: cover;
	background:
		radial-gradient(circle at top left, rgba(201, 135, 63, 0.32), transparent 25%),
		linear-gradient(135deg, rgba(31, 85, 98, 0.14), rgba(16, 33, 43, 0.22));
}

.gwh-post-card__content {
	padding: 1.45rem;
}

.gwh-post-card__meta {
	display: inline-block;
	margin-bottom: 0.6rem;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gwh-teal);
}

.gwh-highlight-panel,
.gwh-detail-card,
.gwh-form-shell,
.gwh-cta-band {
	padding: clamp(1.5rem, 3vw, 2.3rem);
}

.gwh-detail-grid {
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.gwh-content {
	max-width: 820px;
}

.gwh-content > * + * {
	margin-top: 1.15rem;
}

.gwh-content ul li + li,
.gwh-check-list li + li {
	margin-top: 0.4rem;
}

.gwh-check-list {
	list-style: none;
	padding: 0;
}

.gwh-check-list li {
	position: relative;
	padding-left: 1.4rem;
}

.gwh-check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: var(--gwh-amber);
	box-shadow: 0 0 0 5px rgba(201, 135, 63, 0.18);
}

.gwh-detail-sidebar {
	display: grid;
	gap: 1rem;
}

.gwh-detail-card--warning {
	border-color: rgba(201, 135, 63, 0.32);
	background: rgba(235, 211, 184, 0.34);
}

.gwh-cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gwh-space-4);
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(135deg, var(--gwh-ink), var(--gwh-teal));
	color: var(--gwh-white);
	box-shadow: var(--gwh-shadow-lg);
}

.gwh-cta-band::before {
	top: -160%;
	left: -24%;
	width: 42%;
	height: 380%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
	transform: rotate(18deg);
	animation: gwh-sheen 11s ease-in-out infinite;
}

.gwh-cta-band h2,
.gwh-cta-band .gwh-eyebrow {
	color: inherit;
}

.gwh-faq-list {
	display: grid;
	gap: 0.85rem;
}

.gwh-faq-item {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(16, 33, 43, 0.08);
	border-radius: var(--gwh-radius-sm);
	padding: 1rem 1.25rem;
}

.gwh-faq-item summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--gwh-ink);
}

.gwh-faq-item[open] {
	box-shadow: var(--gwh-shadow-sm);
}

.gwh-faq-item div {
	margin-top: 0.9rem;
}

.gwh-testimonial-copy p:last-child {
	margin-bottom: 0;
}

.gwh-design-upload-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: var(--gwh-space-5);
	align-items: start;
}

.gwh-upload-guidance {
	display: grid;
	gap: 1.1rem;
}

.gwh-upload-guidance .gwh-detail-card {
	margin-top: 0.5rem;
}

.gwh-form-shell {
	max-width: 920px;
	margin: 0 auto;
}

.gwh-form-heading {
	margin-bottom: 1.5rem;
}

.gwh-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.gwh-field--textarea,
.gwh-field--file {
	grid-column: 1 / -1;
}

.gwh-field label {
	display: block;
	font-weight: 700;
	color: var(--gwh-ink);
	margin-bottom: 0.45rem;
}

.gwh-field input,
.gwh-field textarea,
.gwh-field select {
	width: 100%;
	border: 1px solid rgba(16, 33, 43, 0.16);
	background: rgba(255, 255, 255, 0.96);
	border-radius: 16px;
	padding: 0.9rem 1rem;
	color: var(--gwh-ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gwh-field input:focus,
.gwh-field textarea:focus,
.gwh-field select:focus {
	outline: none;
	border-color: var(--gwh-teal);
	box-shadow: 0 0 0 4px rgba(31, 85, 98, 0.12);
}

.gwh-file-upload {
	display: grid;
	gap: 0.85rem;
	padding: 1rem;
	border: 1px dashed rgba(16, 33, 43, 0.24);
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 244, 0.82));
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.gwh-file-upload:focus-within,
.gwh-file-upload.has-files {
	border-style: solid;
	border-color: rgba(31, 85, 98, 0.35);
	box-shadow: 0 0 0 4px rgba(31, 85, 98, 0.08);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(238, 243, 244, 0.92));
}

.gwh-file-input {
	width: 100%;
	padding: 0.7rem;
	border: 1px solid rgba(16, 33, 43, 0.14);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.94);
}

.gwh-file-input::file-selector-button {
	margin-right: 0.9rem;
	border: 0;
	border-radius: 999px;
	padding: 0.75rem 1rem;
	background: linear-gradient(135deg, var(--gwh-teal), var(--gwh-ink));
	color: var(--gwh-white);
	font-weight: 800;
	cursor: pointer;
}

.gwh-file-upload__meta {
	display: grid;
	gap: 0.3rem;
}

.gwh-file-upload__meta strong {
	color: var(--gwh-ink);
	font-size: 0.98rem;
}

.gwh-file-upload__status {
	color: var(--gwh-muted);
	font-size: 0.94rem;
	line-height: 1.5;
}

.gwh-field-help,
.gwh-form-note {
	display: block;
	color: var(--gwh-muted);
	font-size: 0.92rem;
	margin-top: 0.45rem;
}

.gwh-form-actions {
	margin-top: 1.5rem;
}

.gwh-alert {
	border-radius: 16px;
	padding: 0.95rem 1.1rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.gwh-alert--success {
	background: rgba(31, 85, 98, 0.12);
	color: var(--gwh-teal-strong);
}

.gwh-alert--error {
	background: rgba(188, 57, 57, 0.1);
	color: #8a1f1f;
}

.is-hidden {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.gwh-pagination {
	grid-column: 1 / -1;
}

.gwh-page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-right: 0.35rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(16, 33, 43, 0.1);
}

.gwh-page-numbers.current {
	background: var(--gwh-teal);
	color: var(--gwh-white);
}

.gwh-site-footer {
	background: var(--gwh-ink);
	color: rgba(255, 255, 255, 0.82);
	padding: 4rem 0 2rem;
	margin-top: auto;
}

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

.gwh-footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr 1fr;
	gap: 2rem;
}

.gwh-footer-links,
.gwh-footer-mini {
	list-style: none;
	padding: 0;
	margin: 0;
}

.gwh-footer-links li + li,
.gwh-footer-mini li + li {
	margin-top: 0.55rem;
}

.gwh-footer-note {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.94rem;
}

.gwh-footer-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.gwh-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1.5rem;
	margin-top: 2rem;
}

.gwh-footer-bottom p {
	margin: 0;
}

.gwh-footer-mini {
	display: flex;
	gap: 1rem;
}

.gwh-product-panel {
	margin-top: 1.5rem;
	padding: 1.25rem;
	border-radius: 18px;
	background: rgba(246, 241, 232, 0.9);
	border: 1px solid rgba(16, 33, 43, 0.08);
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes gwh-float {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	100% {
		transform: translate3d(-2rem, 1.5rem, 0) scale(1.08);
	}
}

@keyframes gwh-float-reverse {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	100% {
		transform: translate3d(2rem, -1.25rem, 0) scale(1.06);
	}
}

@keyframes gwh-breathe {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.7;
	}

	50% {
		transform: scale(1.12);
		opacity: 1;
	}
}

@keyframes gwh-grid-shift {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-48px, 32px, 0);
	}
}

@keyframes gwh-sheen {
	0%,
	72% {
		transform: translate3d(0, 0, 0) rotate(18deg);
		opacity: 0;
	}

	82% {
		opacity: 1;
	}

	100% {
		transform: translate3d(250%, 0, 0) rotate(18deg);
		opacity: 0;
	}
}

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

	.reveal,
	.gwh-button,
	.gwh-field input,
	.gwh-field textarea,
	.gwh-field select {
		transition: none;
		transform: none;
		opacity: 1;
	}

	.gwh-hero::before,
	.gwh-hero::after,
	.gwh-section--ink::before,
	.gwh-section--ink::after,
	.gwh-cta-band::before {
		animation: none;
	}
}

@media (max-width: 1080px) {
	.gwh-hero__grid,
	.gwh-two-column,
	.gwh-detail-grid,
	.gwh-solution-hero,
	.gwh-footer-grid,
	.gwh-design-upload-grid {
		grid-template-columns: 1fr;
	}

	.gwh-card-grid--three,
	.gwh-post-grid,
	.gwh-why-grid,
	.gwh-credibility-strip ul,
	.gwh-hero__metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 840px) {
	.gwh-topbar {
		display: none;
	}

	.gwh-nav-toggle {
		display: inline-flex;
	}

	.gwh-site-nav {
		position: absolute;
		top: calc(100% + 1px);
		left: 0;
		right: 0;
		padding: 1rem 1rem 1.2rem;
		background: #f8f3ea;
		border-bottom: 1px solid rgba(16, 33, 43, 0.08);
		box-shadow: 0 20px 48px rgba(16, 33, 43, 0.16);
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity 0.2s ease, transform 0.2s ease;
		min-height: calc(100vh - 92px);
		max-height: calc(100vh - 92px);
		overflow-y: auto;
	}

	body.gwh-menu-open .gwh-site-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.gwh-nav-list,
	.gwh-nav-list ul,
	.gwh-nav-cta,
	.gwh-inline-actions,
	.gwh-cta-band,
	.gwh-footer-bottom,
	.gwh-footer-mini {
		flex-direction: column;
		align-items: stretch;
	}

	.gwh-form-grid,
	.gwh-card-grid--three,
	.gwh-post-grid,
	.gwh-why-grid,
	.gwh-credibility-strip ul,
	.gwh-hero__metrics {
		grid-template-columns: 1fr;
	}

	.gwh-hero,
	.gwh-page-hero,
	.gwh-page-section {
		padding-top: 3.75rem;
		padding-bottom: 3rem;
	}
}

@media (max-width: 540px) {
	:root {
		--gwh-container: min(100% - 20px, 100%);
	}

	.gwh-header__inner {
		padding: 0.9rem 0;
	}

	.gwh-branding__mark {
		width: 44px;
		height: 44px;
		border-radius: 14px;
	}

	.gwh-hero h1,
	.gwh-page-hero h1 {
		font-size: clamp(2.2rem, 9vw, 3.2rem);
	}
}
