/**
 * Craftrove by T — main site stylesheet.
 *
 * Soft, whimsical handmade-crochet brand system: white base, blush-pink
 * organic blobs, berry/magenta accents, warm brown headings, playful yarn
 * decoration. GeneratePress child theme (GRO-432).
 *
 * Contents:
 *   1.  Design tokens
 *   2.  Base / GeneratePress resets
 *   3.  Layout utilities
 *   4.  Decorative SVG helpers (blob / thread / wave / scallop / icon)
 *   5.  Accessibility helpers
 *   6.  Section header pattern
 *   7.  Buttons
 *   8.  Promo bar
 *   9.  Header / nav / search
 *   10. Hero
 *   11. About split
 *   12. USP circles
 *   13. Product grid section
 *   14. Craft ethos
 *   15. Band heading
 *   16. Process steps
 *   17. Contact info / socials / contact form
 *   18. FAQ
 *   19. Offer band
 *   20. Footer
 *   21. Utility / misc components
 *   22. AOS + motion safety
 */

/* =====================================================================
   1. Design tokens
   ===================================================================== */

:root {
	--crt-berry: #AC3A7E;
	--crt-berry-dark: #8f2f68;
	--crt-heading: #55494F;
	--crt-green: #456B5F;
	--crt-yellow: #F7D868;
	--crt-pink: #FFF0F5;
	--crt-peach: #FADADD;
	--crt-cream: #FAF5EF;
	--crt-border: #D4D4D4;
	--crt-body: #221d20;

	/* Yarn/thread decorative accent palette (GRO-442 §3.8 motifs — sampled from
	   the approved section screenshots since no source photo cutouts exist). */
	--crt-yarn-red: #C23B4A;
	--crt-yarn-purple: #9B65D1;
	--crt-yarn-blue: #6BA3D6;
	--crt-yarn-pink: #F14D8B;
	--crt-thread-cord: #A9BAC9;
	--crt-rope: #C7A468;

	--crt-font-head: 'Nunito', sans-serif;
	--crt-font-body: 'Plus Jakarta Sans', sans-serif;
	--crt-font-script: 'Dancing Script', cursive;

	/* Derived rhythm tokens (internal). */
	--crt-section-pad: 80px;
	--crt-radius-pill: 30px;
	--crt-radius-card: 16px;
	--crt-radius-field: 8px;
	--crt-transition: 0.2s ease;
	--crt-shadow-soft: 0 10px 30px rgba(85, 73, 79, 0.10);
}

/* =====================================================================
   2. Base / GeneratePress resets
   ===================================================================== */

body {
	background: #fff;
	color: var(--crt-body);
	font-family: var(--crt-font-body);
	font-size: 18px;
	line-height: 30px;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--crt-font-head);
	color: var(--crt-heading);
	line-height: 1.15;
}

/* Let our sections run edge-to-edge: neutralise GP wrappers. */
.site-content {
	padding: 0;
	display: block;
}

.container.grid-container,
.grid-container {
	max-width: none;
	padding: 0;
}

.site-main {
	margin: 0;
}

.separate-containers .inside-article,
.inside-article {
	padding: 0;
}

.separate-containers .site-main > * {
	margin-bottom: 0;
}

.entry-content {
	margin-top: 0;
}

.is-right-sidebar,
.is-left-sidebar {
	display: none;
}

/* Global interactive polish. */
a {
	color: var(--crt-berry);
	transition: color var(--crt-transition), background-color var(--crt-transition), border-color var(--crt-transition);
}

a:hover {
	color: var(--crt-berry-dark);
}

button {
	font-family: inherit;
}

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

/* Focus visibility everywhere. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--crt-berry);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Attribute-hidden must always win over our display rules. */
[hidden] {
	display: none !important;
}

/* =====================================================================
   3. Layout utilities
   ===================================================================== */

.crt-container {
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 24px;
}

/* =====================================================================
   4. Decorative SVG helpers
   ===================================================================== */

/* Organic blob — colour comes from the parent context via currentColor. */
.crt-blob {
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

/* Wrapping decor spans are always non-interactive backdrops. */
[class*="__blob"],
[class*="__yarn"],
[class*="__decor"] {
	pointer-events: none;
}

/* Dashed thread + needle (USP rows). */
.crt-thread {
	position: absolute;
	color: var(--crt-berry);
	width: 100%;
	pointer-events: none;
}

/* Footer wavy top edge. */
.crt-wave {
	display: block;
	width: 100%;
	height: 70px;
}

.crt-wave__fill {
	fill: #F5F5F5;
}

.crt-wave__stroke {
	stroke: var(--crt-berry);
}

/* Scalloped strip (hero underline motif). */
.crt-scallop {
	display: block;
	width: 100%;
	height: 28px;
	color: var(--crt-pink);
}

/* Inline icon wrapper — font-size controls the icon size. */
.crt-icon {
	display: inline-grid;
	place-items: center;
	line-height: 1;
}

.crt-icon svg {
	width: 1.25em;
	height: 1.25em;
	display: block;
}

/* =====================================================================
   5. Accessibility helpers
   ===================================================================== */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal;
}

.screen-reader-text:focus {
	background-color: #fff;
	clip: auto;
	clip-path: none;
	color: var(--crt-berry);
	display: block;
	font-size: 15px;
	font-weight: 600;
	height: auto;
	left: 8px;
	line-height: normal;
	padding: 14px 22px;
	text-decoration: none;
	top: 8px;
	width: auto;
	z-index: 100000;
	box-shadow: var(--crt-shadow-soft);
	border-radius: var(--crt-radius-field);
}

/* =====================================================================
   6. Section header pattern
   ===================================================================== */

.crt-sec-head {
	position: relative;
	z-index: 1;
	margin-bottom: 32px;
}

.crt-eyebrow {
	display: block;
	font-family: var(--crt-font-script);
	font-weight: 500;
	font-size: clamp(24px, 2.5vw, 32px);
	line-height: 1.3;
	color: var(--crt-berry);
	letter-spacing: 0.06em;
	margin-bottom: 4px;
}

.crt-sec-head__title {
	margin: 0 0 18px;
	font-family: var(--crt-font-head);
	font-weight: 700;
	font-size: clamp(30px, 4.5vw, 48px);
	line-height: 1.15;
	color: var(--crt-heading);
}

.crt-divider {
	display: block;
	width: 82px;
	height: 5px;
	border-radius: 3px;
	background: var(--crt-berry);
}

.crt-sec-head__body {
	max-width: 720px;
	margin-top: 20px;
	font-size: 18px;
	line-height: 30px;
}

/* Centered variant. */
.crt-sec-head--center {
	text-align: center;
}

.crt-sec-head--center .crt-divider {
	margin-inline: auto;
}

.crt-sec-head--center .crt-sec-head__body {
	margin-inline: auto;
}

/* Left variant. */
.crt-sec-head--left {
	text-align: left;
}

.crt-sec-head--left .crt-divider {
	margin: 0;
}

/* =====================================================================
   7. Buttons
   ===================================================================== */

.crt-btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 16px 26px;
	border: 0;
	border-radius: var(--crt-radius-pill);
	font-family: var(--crt-font-body);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--crt-transition), color var(--crt-transition), border-color var(--crt-transition), transform var(--crt-transition), box-shadow var(--crt-transition);
	min-height: 56px;
}

.crt-btn:hover {
	text-decoration: none;
}

/* Arrow-in-circle suffix. */
.crt-btn__arrow {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	flex-shrink: 0;
	transition: background-color var(--crt-transition), color var(--crt-transition), transform var(--crt-transition);
}

.crt-btn__arrow svg {
	width: 16px;
	height: 16px;
	display: block;
}

/* Berry (primary). */
.crt-btn--berry {
	background: var(--crt-berry);
	color: #fff;
}

.crt-btn--berry:hover,
.crt-btn--berry:focus-visible {
	background: var(--crt-berry-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(172, 58, 126, 0.28);
}

.crt-btn--berry .crt-btn__arrow {
	background: #fff;
	color: var(--crt-berry);
}

/* Yellow (secondary). */
.crt-btn--yellow {
	background: var(--crt-yellow);
	color: #1c1417;
}

.crt-btn--yellow:hover,
.crt-btn--yellow:focus-visible {
	background: #f3cd47;
	color: #1c1417;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(247, 216, 104, 0.45);
}

.crt-btn--yellow .crt-btn__arrow {
	background: #1c1417;
	color: var(--crt-yellow);
}

/* Outline (tertiary). */
.crt-btn--outline {
	background: transparent;
	color: var(--crt-heading);
	border: 1.5px solid var(--crt-heading);
	padding: 14.5px 26px;
}

.crt-btn--outline:hover,
.crt-btn--outline:focus-visible {
	background: var(--crt-heading);
	color: #fff;
	transform: translateY(-2px);
}

.crt-btn--outline .crt-btn__arrow {
	background: var(--crt-heading);
	color: #fff;
}

.crt-btn--outline:hover .crt-btn__arrow {
	background: #fff;
	color: var(--crt-heading);
}

/* Small variant. */
.crt-btn--sm {
	padding: 11px 20px;
	font-size: 16px;
	gap: 10px;
	min-height: 44px;
}

.crt-btn--sm .crt-btn__arrow {
	width: 26px;
	height: 26px;
}

.crt-btn--sm .crt-btn__arrow svg {
	width: 13px;
	height: 13px;
}

/* =====================================================================
   8. Promo bar
   ===================================================================== */

.crt-promo {
	max-width: 702px;
	margin-inline: auto;
}

.crt-promo__inner {
	display: block;
	background: var(--crt-yellow);
	border-radius: 0 0 20px 20px;
	padding: 10px 20px;
	color: #111;
	font-size: 17px;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	transition: background-color var(--crt-transition);
}

a.crt-promo__inner:hover {
	background: #f3cd47;
	color: #111;
}

@media (max-width: 768px) {
	.crt-promo {
		max-width: none;
	}

	.crt-promo__inner {
		border-radius: 0;
		font-size: 15px;
		padding: 9px 16px;
	}
}

/* =====================================================================
   9. Header / nav / search
   ===================================================================== */

.crt-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid #f3e2ec;
}

.crt-header__inner {
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 24px;
	min-height: 110px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

/* Wordmark — image version. */
.crt-wordmark {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.crt-wordmark img {
	width: auto;
	height: 70px;
	display: block;
}

/* Wordmark — styled-text fallback. */
.crt-wordmark--text {
	flex-direction: column;
	align-items: flex-start;
	line-height: 1;
	gap: 2px;
}

.crt-wordmark__script {
	font-family: var(--crt-font-script);
	font-weight: 600;
	font-size: 30px;
	color: var(--crt-berry);
	letter-spacing: 0.03em;
}

.crt-wordmark__by {
	font-family: var(--crt-font-head);
	font-size: 14px;
	font-weight: 700;
	color: var(--crt-heading);
	padding-left: 34px;
}

.crt-wordmark__by em {
	font-family: var(--crt-font-script);
	font-style: normal;
	font-size: 18px;
	color: var(--crt-berry);
}

/* Primary nav. */
.crt-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 40px;
}

.crt-nav__list a {
	display: inline-block;
	position: relative;
	padding: 6px 0;
	font-size: 18px;
	font-weight: 500;
	color: #111;
	text-decoration: none;
}

.crt-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 3px;
	border-radius: 2px;
	background: #A83E7C;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform var(--crt-transition);
}

.crt-nav__list a:hover,
.crt-nav__list .current-menu-item > a,
.crt-nav__list a[aria-current="page"] {
	color: #A83E7C;
}

.crt-nav__list a:hover::after,
.crt-nav__list .current-menu-item > a::after,
.crt-nav__list a[aria-current="page"]::after {
	transform: scaleX(1);
}

/* Header icon cluster. */
.crt-header__icons {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.crt-iconbtn {
	position: relative;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--crt-peach);
	color: var(--crt-heading);
	cursor: pointer;
	text-decoration: none;
	transition: background-color var(--crt-transition), color var(--crt-transition), transform var(--crt-transition);
}

.crt-iconbtn svg {
	width: 20px;
	height: 20px;
	display: block;
}

.crt-iconbtn:hover,
.crt-iconbtn[aria-expanded="true"] {
	background: var(--crt-berry);
	color: #fff;
}

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

/* Cart count badge. */
.crt-cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: var(--crt-berry);
	border: 2px solid #fff;
	color: #fff;
	font-family: var(--crt-font-head);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.crt-cart-count[aria-hidden="true"] {
	display: none;
}

/* Hamburger toggle. */
.crt-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
}

.crt-header__toggle span {
	display: block;
	width: 24px;
	height: 2.5px;
	border-radius: 2px;
	background: var(--crt-heading);
	transition: transform var(--crt-transition), opacity var(--crt-transition);
}

.crt-header__toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(8.5px) rotate(45deg);
}

.crt-header__toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.crt-header__toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile nav dropdown. */
@media (max-width: 1023px) {
	.crt-header__inner {
		min-height: 84px;
	}

	.crt-wordmark img {
		height: 56px;
	}

	.crt-header__toggle {
		display: flex;
		order: 3;
	}

	.crt-header__icons {
		order: 2;
		margin-left: auto;
		gap: 10px;
	}

	.crt-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid #f3e2ec;
		box-shadow: 0 18px 30px rgba(85, 73, 79, 0.12);
		padding: 12px 24px 20px;
		z-index: 60;
	}

	.crt-nav.is-open {
		display: block;
	}

	.crt-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.crt-nav__list li {
		border-bottom: 1px solid #f6ebf1;
	}

	.crt-nav__list li:last-child {
		border-bottom: 0;
	}

	.crt-nav__list a {
		display: block;
		padding: 14px 4px;
		font-size: 17px;
	}

	.crt-nav__list a::after {
		display: none;
	}
}

/* Search bar (revealed under the header). */
.crt-search-bar {
	border-bottom: 1px solid #f3e2ec;
	background: #fff;
	padding: 16px 24px 20px;
}

.crt-search-bar__form {
	position: relative;
	max-width: 640px;
	margin-inline: auto;
	display: flex;
}

.crt-search-bar input[type="search"] {
	width: 100%;
	border: 1px solid var(--crt-border);
	border-radius: var(--crt-radius-pill);
	padding: 14px 62px 14px 22px;
	font-family: inherit;
	font-size: 16px;
	background: #fff;
	color: var(--crt-body);
	transition: border-color var(--crt-transition), box-shadow var(--crt-transition);
}

.crt-search-bar input[type="search"]:focus {
	outline: none;
	border-color: var(--crt-berry);
	box-shadow: 0 0 0 3px rgba(172, 58, 126, 0.15);
}

.crt-search-bar__submit {
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: var(--crt-berry);
	color: #fff;
	cursor: pointer;
	transition: background-color var(--crt-transition);
}

.crt-search-bar__submit svg {
	width: 18px;
	height: 18px;
	display: block;
}

.crt-search-bar__submit:hover {
	background: var(--crt-berry-dark);
}

/* =====================================================================
   10. Hero
   ===================================================================== */

.crt-hero {
	position: relative;
	overflow: hidden;
	padding: 90px 0 0;
	background: #fff;
}

.crt-hero__blob {
	position: absolute;
	z-index: 0;
}

.crt-hero__blob--pink {
	color: #FEEAEB;
	width: 58%;
	max-width: 760px;
	height: 86%;
	top: -14%;
	left: -12%;
}

.crt-hero__blob--sage {
	color: var(--crt-peach);
	opacity: 0.9;
	width: 50%;
	max-width: 660px;
	height: 88%;
	top: 6%;
	right: -14%;
}

/* Red thread spool between the copy and photo columns. */
.crt-hero__yarn {
	position: absolute;
	z-index: 2;
	top: 78px;
	left: 47.5%;
	width: 76px;
	color: var(--crt-yarn-red);
	filter: drop-shadow(0 6px 10px rgba(85, 73, 79, 0.18));
	transform: rotate(-6deg);
}

.crt-hero__yarn svg {
	display: block;
	width: 100%;
	height: auto;
}

/* Thread that leaves the hero photo and flows down into the About section. */
.crt-hero__connector {
	position: absolute;
	z-index: 2;
	left: 8%;
	bottom: -170px;
	width: 26px;
	height: 220px;
	color: var(--crt-thread-cord);
}

.crt-hero__connector svg {
	display: block;
	width: 100%;
	height: 100%;
}

.crt-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 40px;
	align-items: center;
	padding-bottom: 70px;
}

/* Copy column. */
.crt-hero__title {
	margin: 0 0 22px;
}

.crt-hero__script {
	font-family: var(--crt-font-script);
	font-weight: 500;
	color: var(--crt-berry);
	letter-spacing: 0.06em;
}

.crt-hero__script--accent {
	display: block;
	font-size: clamp(36px, 4vw, 56px);
	line-height: 1.2;
	margin-bottom: 4px;
}

.crt-hero__line1 {
	display: block;
	font-family: var(--crt-font-head);
	font-weight: 800;
	font-size: clamp(40px, 5vw, 70px);
	line-height: 1.08;
	color: var(--crt-green);
}

.crt-hero__line2-wrap {
	position: relative;
	display: inline-block;
}

.crt-hero__line2 {
	display: block;
	font-family: var(--crt-font-head);
	font-weight: 800;
	font-size: clamp(52px, 6.4vw, 90px);
	line-height: 1.05;
	color: var(--crt-heading);
}

.crt-hero__script--overlay {
	position: absolute;
	right: -0.6em;
	bottom: -0.28em;
	transform: translateX(60%) rotate(-4deg);
	font-size: clamp(40px, 4.5vw, 64px);
	line-height: 1;
	white-space: nowrap;
}

.crt-hero__body {
	max-width: 560px;
	font-size: 18px;
	line-height: 30px;
}

.crt-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 28px;
}

/* Media column — organic oval crop with an offset berry outline echoing it. */
.crt-hero__media {
	--crt-hero-oval: 62% 38% 41% 59% / 55% 42% 58% 45%;
	position: relative;
	z-index: 1;
	padding: 4px 56px 56px 0;
}

.crt-hero__media img {
	display: block;
	width: 100%;
	aspect-ratio: 625 / 534;
	object-fit: cover;
	border-radius: var(--crt-hero-oval);
	position: relative;
}

.crt-hero__outline {
	position: absolute;
	top: 0;
	left: 18px;
	right: 0;
	bottom: 0;
	border: 1px solid var(--crt-berry);
	border-radius: var(--crt-hero-oval);
	z-index: -1;
	pointer-events: none;
}

.crt-hero__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 625 / 534;
	background: var(--crt-peach);
	border-radius: var(--crt-hero-oval, 5px);
	color: var(--crt-berry);
	font-size: 96px;
}

.crt-hero__scallop {
	position: relative;
	z-index: 1;
}

@media (max-width: 900px) {
	.crt-hero {
		padding-top: 56px;
	}

	.crt-hero__inner {
		grid-template-columns: 1fr;
		gap: 44px;
		padding-bottom: 48px;
	}

	.crt-hero__media {
		max-width: 560px;
	}

	.crt-hero__script--overlay {
		right: 0;
		transform: translateX(24%) rotate(-4deg);
	}

	.crt-hero__yarn,
	.crt-hero__connector {
		display: none;
	}
}

@media (max-width: 480px) {
	.crt-hero__outline {
		top: 0;
		left: 14px;
		right: -8px;
		bottom: -8px;
	}

	.crt-hero__ctas {
		gap: 12px;
	}
}

/* =====================================================================
   11. About split
   ===================================================================== */

.crt-about {
	position: relative;
	padding: var(--crt-section-pad) 0;
	overflow: hidden;
}

.crt-about__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.crt-about--img-right .crt-about__media {
	order: 2;
}

.crt-about--img-right .crt-about__copy {
	order: 1;
}

.crt-about__media {
	position: relative;
	z-index: 1;
}

.crt-about__blob {
	position: absolute;
	inset: -6%;
	z-index: -1;
	color: var(--crt-pink);
}

.crt-about__media img {
	display: block;
	width: 100%;
	aspect-ratio: 640 / 520;
	object-fit: cover;
	border-radius: 46% 54% 50% 50% / 48% 46% 54% 52%;
	border: 6px solid #fff;
	box-shadow: 0 0 0 1px var(--crt-berry);
}

.crt-about__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 640 / 520;
	background: var(--crt-peach);
	border-radius: 46% 54% 50% 50% / 48% 46% 54% 52%;
	border: 6px solid #fff;
	box-shadow: 0 0 0 1px var(--crt-berry);
	color: var(--crt-berry);
	font-size: 80px;
}

.crt-about__yarnball {
	position: absolute;
	left: -10px;
	bottom: 6px;
	font-size: 64px;
	color: var(--crt-berry);
	line-height: 1;
	transform: rotate(-10deg);
}

/* Homepage-only decor (GRO-442 §Section 2) — the About Us page keeps the base look. */
.crt-about--home .crt-about__blob {
	inset: -18% -10% -12% -22%;
}

/* Small blue yarn ball "between sections" (GRO-432 §2.1.4). */
.crt-about--home .crt-about__yarnball {
	color: var(--crt-yarn-blue);
}

.crt-about__pinkball {
	position: absolute;
	top: -18px;
	right: 34px;
	width: 66px;
	color: var(--crt-yarn-pink);
	filter: drop-shadow(0 6px 10px rgba(85, 73, 79, 0.16));
	z-index: 2;
}

.crt-about__pinkball svg {
	display: block;
	width: 100%;
	height: auto;
}

.crt-about__spool {
	position: absolute;
	top: 14px;
	right: 8%;
	width: 58px;
	color: var(--crt-yarn-purple);
	z-index: 2;
	transform: rotate(8deg);
}

.crt-about__spool svg {
	display: block;
	width: 100%;
	height: auto;
}

.crt-about__connector {
	position: absolute;
	top: 0;
	left: 6%;
	width: 22px;
	height: 70px;
	color: var(--crt-thread-cord);
	z-index: 1;
}

.crt-about__connector svg {
	display: block;
	width: 100%;
	height: 100%;
}

.crt-about__copy .crt-btn {
	margin-top: 26px;
}

.crt-about__body {
	margin-bottom: 4px;
}

@media (max-width: 900px) {
	.crt-about__inner {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.crt-about--img-right .crt-about__media,
	.crt-about--img-right .crt-about__copy {
		order: 0;
	}

	.crt-about__media {
		max-width: 480px;
		margin-inline: auto;
	}
}

/* =====================================================================
   12. USP circles
   ===================================================================== */

.crt-usps {
	position: relative;
	padding: 90px 0;
	overflow: hidden;
}

.crt-usps__thread {
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 90px;
	opacity: 0.8;
	z-index: 0;
}

/* Homepage-only decor (GRO-442 §Section 3) — background blobs, rope, blue yarn
   ball and the needle+thread touching the middle circle. */
.crt-usps__thread--rope {
	position: absolute;
	width: 100%;
	pointer-events: none;
	color: var(--crt-rope);
	height: 22px;
	opacity: 1;
	z-index: 0;
}

.crt-usps__bgblob {
	position: absolute;
	z-index: 0;
	opacity: 0.12;
	pointer-events: none;
}

.crt-usps__bgblob--1 {
	color: var(--crt-yarn-purple);
	width: 40%;
	max-width: 480px;
	height: 70%;
	top: -18%;
	left: -8%;
}

.crt-usps__bgblob--2 {
	color: var(--crt-yellow);
	width: 34%;
	max-width: 420px;
	height: 60%;
	bottom: -20%;
	right: -6%;
}

.crt-usps__blueball {
	position: absolute;
	z-index: 2;
	top: 4%;
	left: 50%;
	width: 62px;
	transform: translateX(60px);
	color: var(--crt-yarn-blue);
	filter: drop-shadow(0 6px 10px rgba(85, 73, 79, 0.16));
}

.crt-usps__blueball svg {
	display: block;
	width: 100%;
	height: auto;
}

.crt-usps__needle {
	position: absolute;
	z-index: 2;
	top: 76%;
	left: 50%;
	width: 80px;
	transform: translateX(-26px) rotate(4deg);
	color: var(--crt-yellow);
	opacity: 0.95;
}

.crt-usps__needle svg {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 900px) {
	.crt-usps__blueball,
	.crt-usps__needle,
	.crt-usps__bgblob {
		display: none;
	}
}

.crt-usps__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.crt-usp {
	aspect-ratio: 1;
	border-radius: 47% 53% 52% 48% / 50% 47% 53% 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px;
	transition: transform var(--crt-transition), box-shadow var(--crt-transition);
}

.crt-usp:hover {
	transform: translateY(-4px);
	box-shadow: var(--crt-shadow-soft);
}

.crt-usp--dashed {
	background: #fff;
	border: 2px dashed var(--crt-border);
}

.crt-usp--pink {
	background: var(--crt-pink);
}

.crt-usp--cream {
	background: #F5F5EA;
}

.crt-usp__icon {
	font-size: 56px;
	line-height: 1;
	margin-bottom: 12px;
	color: var(--crt-berry);
}

.crt-usp__icon svg {
	width: 56px;
	height: 56px;
}

.crt-usp__title {
	margin: 0 0 10px;
	font-size: clamp(24px, 2.4vw, 30px);
	font-weight: 800;
}

.crt-usp__body {
	margin: 0;
	max-width: 330px;
	font-size: 17px;
	line-height: 27px;
}

@media (max-width: 900px) {
	.crt-usps {
		padding: 64px 0;
	}

	.crt-usps__thread {
		display: none;
	}

	.crt-usps__inner {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-inline: auto;
		gap: 24px;
	}
}

@media (max-width: 480px) {
	.crt-usp {
		padding: 32px 24px;
	}
}

/* =====================================================================
   13. Product grid section
   ===================================================================== */

.crt-products {
	position: relative;
	padding: var(--crt-section-pad) 0;
	overflow: hidden;
}

.crt-products__blob {
	position: absolute;
	top: -6%;
	left: -12%;
	width: 46%;
	max-width: 640px;
	height: 60%;
	color: var(--crt-cream);
	z-index: 0;
}

.crt-products__inner {
	position: relative;
	z-index: 1;
}

/* Card styling lives in woocommerce.css — list reset fallback only. */
.crt-products ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
}

.crt-products__cta {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

/* =====================================================================
   14. Craft ethos
   ===================================================================== */

.crt-ethos {
	position: relative;
	padding: 90px 0;
	overflow: hidden;
}

.crt-ethos__band {
	position: absolute;
	inset: 0 -10%;
	height: 100%;
	color: var(--crt-pink);
	z-index: 0;
}

.crt-ethos__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 60px;
	align-items: center;
}

.crt-ethos__bullets {
	list-style: none;
	margin: 28px 0;
	padding: 0;
	display: grid;
	gap: 22px;
}

.crt-ethos__bullet {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.crt-ethos__check {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--crt-berry);
	color: #fff;
	flex-shrink: 0;
	margin-top: 3px;
}

.crt-ethos__check svg {
	width: 16px;
	height: 16px;
	display: block;
}

.crt-ethos__bullet-copy strong {
	display: block;
	font-family: var(--crt-font-head);
	font-size: 19px;
	font-weight: 700;
	color: var(--crt-heading);
	margin-bottom: 2px;
}

.crt-ethos__bullet-copy span {
	font-size: 16px;
	line-height: 26px;
}

/* Media column. */
.crt-ethos__media {
	position: relative;
	z-index: 1;
}

.crt-ethos__blob {
	position: absolute;
	inset: -16% -10% -14% -18%;
	z-index: -1;
	color: var(--crt-peach);
}

.crt-ethos__media img {
	display: block;
	width: 100%;
	aspect-ratio: 600 / 586;
	object-fit: cover;
	border-radius: 52% 48% 46% 54% / 50% 52% 48% 50%;
	border: 2px dashed var(--crt-berry);
	padding: 10px;
	background: #fff;
}

.crt-ethos__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 600 / 586;
	background: #fff;
	border-radius: 52% 48% 46% 54% / 50% 52% 48% 50%;
	border: 2px dashed var(--crt-berry);
	color: var(--crt-berry);
	font-size: 80px;
}

.crt-ethos__yarnball {
	position: absolute;
	left: -34px;
	bottom: 14%;
	width: 64px;
	color: var(--crt-yarn-purple);
	line-height: 1;
	transform: rotate(10deg);
	filter: drop-shadow(0 6px 10px rgba(85, 73, 79, 0.16));
	z-index: 2;
}

.crt-ethos__yarnball svg {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 900px) {
	.crt-ethos {
		padding: 64px 0;
	}

	.crt-ethos__inner {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.crt-ethos__media {
		max-width: 460px;
		margin-inline: auto;
	}
}

/* =====================================================================
   15. Band heading
   ===================================================================== */

.crt-band {
	position: relative;
	padding: 90px 0;
	text-align: center;
	overflow: hidden;
}

.crt-band__blob {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
	max-width: 1100px;
	height: 100%;
	color: var(--crt-pink);
	z-index: 0;
}

.crt-band__decor {
	position: absolute;
	top: 50%;
	font-size: 96px;
	color: var(--crt-berry);
	opacity: 0.16;
	z-index: 0;
	line-height: 1;
}

.crt-band__decor--left {
	left: 3%;
	transform: translateY(-50%) rotate(-14deg);
}

.crt-band__decor--right {
	right: 3%;
	transform: translateY(-50%) rotate(12deg);
}

.crt-band__inner {
	position: relative;
	z-index: 1;
}

.crt-band__inner .crt-sec-head {
	margin-bottom: 0;
}

.crt-band__body {
	max-width: 780px;
	margin: 24px auto 0;
	font-size: 20px;
	line-height: 32px;
}

@media (max-width: 900px) {
	.crt-band {
		padding: 64px 0;
	}

	.crt-band__decor {
		font-size: 60px;
		opacity: 0.1;
	}

	.crt-band__body {
		font-size: 18px;
		line-height: 30px;
	}
}

/* =====================================================================
   16. Process steps
   ===================================================================== */

.crt-steps {
	padding: var(--crt-section-pad) 0;
}

.crt-steps__row {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	counter-reset: crt-step;
}

.crt-step {
	background: #fff;
	border: 1px solid var(--crt-border);
	border-radius: var(--crt-radius-field);
	padding: 24px 20px;
	transition: border-color var(--crt-transition), box-shadow var(--crt-transition), transform var(--crt-transition);
}

.crt-step:hover {
	border-color: var(--crt-berry);
	box-shadow: var(--crt-shadow-soft);
	transform: translateY(-3px);
}

.crt-step__num {
	display: block;
	font-family: var(--crt-font-head);
	font-weight: 800;
	font-size: 28px;
	color: var(--crt-heading);
	line-height: 1;
}

.crt-step__title {
	margin: 8px 0 6px;
	font-family: var(--crt-font-body);
	font-size: 16px;
	font-weight: 600;
	color: var(--crt-berry);
	line-height: 1.35;
}

.crt-step__body {
	margin: 0;
	font-size: 15px;
	line-height: 22px;
}

@media (max-width: 1024px) {
	.crt-steps__row {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}

@media (max-width: 600px) {
	.crt-steps__row {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

/* =====================================================================
   17. Contact info / socials / contact form
   ===================================================================== */

/* Contact page columns wrapper (Gutenberg columns block). */
.entry-content .wp-block-columns {
	max-width: 1280px;
	margin-inline: auto;
	padding: 40px 24px 80px;
	gap: 40px;
}

@media (max-width: 900px) {
	.entry-content .wp-block-columns {
		flex-wrap: wrap;
		padding-bottom: 56px;
	}

	.entry-content .wp-block-columns .wp-block-column {
		flex-basis: 100% !important;
	}
}

/* Contact info column. */
.crt-contact-info {
	position: relative;
}

.crt-contact-info__rows {
	list-style: none;
	margin: 26px 0;
	padding: 0;
	display: grid;
	gap: 18px;
}

.crt-contact-info__rows li {
	display: flex;
	align-items: center;
	gap: 14px 18px;
	font-size: 17px;
}

.crt-contact-info__icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--crt-peach);
	color: var(--crt-berry);
	flex-shrink: 0;
}

.crt-contact-info__icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.crt-contact-info__rows a {
	color: var(--crt-heading);
	text-decoration: none;
}

.crt-contact-info__rows a:hover {
	color: var(--crt-berry);
	text-decoration: underline;
}

.crt-contact-info__yarnball {
	position: absolute;
	right: 8%;
	bottom: -16px;
	font-size: 72px;
	color: var(--crt-berry);
	opacity: 0.18;
	line-height: 1;
	transform: rotate(-8deg);
}

/* Social icon row. */
.crt-socials {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.crt-socials a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--crt-berry);
	color: #fff;
	text-decoration: none;
	transition: background-color var(--crt-transition), transform var(--crt-transition);
}

.crt-socials a svg {
	width: 17px;
	height: 17px;
	display: block;
}

.crt-socials a:hover {
	background: var(--crt-berry-dark);
	color: #fff;
	transform: translateY(-2px);
}

.crt-socials--contact {
	margin-top: 6px;
}

/* Contact form panel. */
.crt-contact-form {
	background: #FBE4E7;
	border-radius: var(--crt-radius-card);
	padding: 44px;
}

.crt-contact-form__title {
	margin: 0 0 24px;
	font-family: var(--crt-font-head);
	font-weight: 800;
	font-size: clamp(26px, 3vw, 32px);
	color: var(--crt-heading);
}

.crt-contact-form__missing {
	margin: 0;
	font-size: 17px;
	line-height: 28px;
}

/* CF7 internals (and any generic form inside the panel). */
.crt-contact-form .wpcf7 p,
.crt-contact-form form p {
	margin: 0 0 16px;
}

.crt-contact-form label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: var(--crt-heading);
	margin-bottom: 6px;
}

.crt-contact-form input[type="text"],
.crt-contact-form input[type="email"],
.crt-contact-form input[type="tel"],
.crt-contact-form input[type="url"],
.crt-contact-form input[type="number"],
.crt-contact-form select,
.crt-contact-form textarea {
	display: block;
	width: 100%;
	background: #fff;
	border: 1px solid var(--crt-border);
	border-radius: var(--crt-radius-field);
	padding: 14px 16px;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.5;
	color: var(--crt-body);
	transition: border-color var(--crt-transition), box-shadow var(--crt-transition);
}

.crt-contact-form input:focus,
.crt-contact-form select:focus,
.crt-contact-form textarea:focus {
	outline: none;
	border-color: var(--crt-berry);
	box-shadow: 0 0 0 3px rgba(172, 58, 126, 0.15);
}

.crt-contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

/* Two-column field row utility (used inside CF7 markup). */
.crt-cf-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 600px) {
	.crt-cf-row {
		grid-template-columns: 1fr;
	}
}

/* Submit as berry pill. */
.crt-contact-form input[type="submit"],
.crt-contact-form .wpcf7-submit,
.crt-contact-form button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 56px;
	background: var(--crt-berry);
	color: #fff;
	border: 0;
	border-radius: var(--crt-radius-pill);
	padding: 16px 32px;
	font-family: var(--crt-font-body);
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color var(--crt-transition), transform var(--crt-transition), box-shadow var(--crt-transition);
}

.crt-contact-form input[type="submit"]:hover,
.crt-contact-form .wpcf7-submit:hover,
.crt-contact-form button[type="submit"]:hover {
	background: var(--crt-berry-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(172, 58, 126, 0.28);
}

/* CF7 validation + response notices. */
.crt-contact-form .wpcf7-not-valid-tip {
	display: block;
	color: #c0392b;
	font-size: 13px;
	margin-top: 5px;
}

.crt-contact-form .wpcf7 form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 14px 18px;
	border: 1px solid var(--crt-berry);
	border-radius: var(--crt-radius-field);
	background: #fff;
	font-size: 15px;
	line-height: 24px;
}

.crt-contact-form .wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--crt-green);
	color: var(--crt-green);
}

.crt-contact-form .wpcf7 form.invalid .wpcf7-response-output,
.crt-contact-form .wpcf7 form.failed .wpcf7-response-output {
	border-color: #c0392b;
	color: #c0392b;
}

.crt-contact-form .wpcf7-spinner {
	margin-left: 12px;
}

@media (max-width: 600px) {
	.crt-contact-form {
		padding: 28px 22px;
	}
}

/* =====================================================================
   18. FAQ
   ===================================================================== */

.crt-faq {
	padding: var(--crt-section-pad) 0;
	overflow: hidden;
}

.crt-faq__inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px;
	align-items: start;
}

/* Decorative media column. */
.crt-faq__media {
	position: relative;
	z-index: 1;
	padding-top: 12px;
}

.crt-faq__blob {
	position: absolute;
	inset: -4%;
	z-index: -1;
	color: var(--crt-pink);
}

.crt-faq__media img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 48% 52% 50% 50% / 52% 48% 52% 48%;
	border: 6px solid #fff;
	box-shadow: 0 0 0 1px var(--crt-berry);
}

.crt-faq__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 1;
	background: var(--crt-peach);
	border-radius: 48% 52% 50% 50% / 52% 48% 52% 48%;
	color: var(--crt-berry);
	font-size: 90px;
}

/* Accordion list. */
.crt-faq__list {
	display: grid;
	gap: 14px;
	margin-top: 28px;
}

.crt-faq__item {
	background: #fff;
	border: 1px solid var(--crt-border);
	border-radius: var(--crt-radius-field);
	overflow: hidden;
	transition: border-color var(--crt-transition), box-shadow var(--crt-transition);
}

.crt-faq__item:hover {
	border-color: rgba(172, 58, 126, 0.55);
}

.crt-faq__item.is-open {
	border-color: var(--crt-berry);
	box-shadow: var(--crt-shadow-soft);
}

.crt-faq__q {
	margin: 0;
	font-size: inherit;
}

.crt-faq__toggle {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 18px 20px;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-family: var(--crt-font-body);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--crt-heading);
	transition: color var(--crt-transition);
}

.crt-faq__toggle:hover,
.crt-faq__item.is-open .crt-faq__toggle {
	color: var(--crt-berry);
}

.crt-faq__qmark {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--crt-berry);
	color: #fff;
	font-family: var(--crt-font-head);
	font-size: 14px;
	font-weight: 800;
	flex-shrink: 0;
}

.crt-faq__qtext {
	flex: 1;
}

/* Plus/minus swap — the span holds both icons. */
.crt-faq__plus {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	font-size: 22px;
	color: currentColor;
	flex-shrink: 0;
}

.crt-faq__plus .crt-icon:nth-child(2) {
	display: none;
}

.crt-faq__item.is-open .crt-faq__plus .crt-icon:nth-child(1) {
	display: none;
}

.crt-faq__item.is-open .crt-faq__plus .crt-icon:nth-child(2) {
	display: inline-grid;
}

/* Answer panel. */
.crt-faq__a {
	padding: 0 20px 20px 64px;
	font-size: 16px;
	line-height: 26px;
}

@media (max-width: 900px) {
	.crt-faq__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.crt-faq__media {
		max-width: 300px;
		margin-inline: auto;
	}
}

@media (max-width: 480px) {
	.crt-faq__toggle {
		padding: 16px;
		gap: 10px;
		font-size: 16px;
	}

	.crt-faq__a {
		padding: 0 16px 16px 56px;
	}
}

/* =====================================================================
   19. Offer band
   ===================================================================== */

.crt-offer {
	position: relative;
	padding: 100px 0;
	text-align: center;
	overflow: hidden;
}

.crt-offer__blob {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1100px;
	max-width: 92%;
	height: 92%;
	color: var(--crt-cream);
	z-index: 0;
}

.crt-offer__yarn {
	position: absolute;
	top: 50%;
	font-size: 110px;
	line-height: 1;
	z-index: 0;
}

.crt-offer__yarn--left {
	left: 2%;
	color: var(--crt-berry);
	opacity: 0.16;
	transform: translateY(-50%) rotate(-16deg);
}

.crt-offer__yarn--right {
	right: 2%;
	color: var(--crt-green);
	opacity: 0.16;
	transform: translateY(-50%) rotate(14deg);
}

/* Homepage-only ball + needle/heart-thread pairing (GRO-442 §Section 6). */
.crt-offer--home .crt-offer__yarn {
	font-size: 0;
	opacity: 1;
	width: 96px;
	height: 96px;
}

.crt-offer--home .crt-offer__yarn--left {
	left: 6%;
	color: var(--crt-yarn-blue);
	transform: translateY(-50%);
}

.crt-offer--home .crt-offer__yarn--right {
	right: 6%;
	color: var(--crt-yarn-red);
	transform: translateY(-50%);
}

.crt-offer--home .crt-offer__yarn svg:first-child {
	display: block;
	width: 100%;
	height: 100%;
}

.crt-offer__needle {
	position: absolute;
	top: -14px;
	right: -18px;
	width: 60px;
	color: #9C9C9C;
	transform: rotate(18deg);
}

.crt-offer__needle svg {
	display: block;
	width: 100%;
	height: auto;
}

.crt-offer__heart-thread {
	position: absolute;
	top: 50%;
	left: 100%;
	width: 150px;
	transform: translateY(-60%);
	color: var(--crt-yarn-red);
}

.crt-offer__heart-thread svg {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 900px) {
	.crt-offer--home .crt-offer__yarn {
		display: none;
	}
}

.crt-offer__inner {
	position: relative;
	z-index: 1;
	max-width: 844px;
	margin-inline: auto;
	padding-inline: 24px;
	display: grid;
	gap: 26px;
	justify-items: center;
}

.crt-offer__title {
	margin: 0;
	font-family: var(--crt-font-head);
	font-weight: 800;
	font-size: clamp(30px, 4.5vw, 48px);
	color: var(--crt-heading);
}

.crt-offer__body {
	margin: 0;
	font-size: 22px;
	line-height: 34px;
}

@media (max-width: 900px) {
	.crt-offer {
		padding: 72px 0;
	}

	.crt-offer__yarn {
		font-size: 64px;
		opacity: 0.1;
	}

	.crt-offer__body {
		font-size: 18px;
		line-height: 30px;
	}
}

/* =====================================================================
   20. Footer
   ===================================================================== */

.crt-footer {
	margin-top: 40px;
}

.crt-footer__wave {
	margin-bottom: -1px; /* no hairline gap against the panel */
}

.crt-footer__inner {
	background: #F5F5F5E6;
}

.crt-footer__inner > * {
	max-width: 1280px;
	margin-inline: auto;
}

.crt-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 0.8fr) 1.2fr;
	gap: 30px;
	padding: 30px 24px 0;
}

/* Brand column. */
.crt-wordmark--footer {
	display: inline-flex;
	margin-bottom: 16px;
}

.crt-wordmark--footer img {
	height: 108px;
}

.crt-wordmark--footer.crt-wordmark--text .crt-wordmark__script {
	font-size: 44px;
}

.crt-wordmark--footer.crt-wordmark--text .crt-wordmark__by {
	font-size: 18px;
	padding-left: 46px;
}

.crt-wordmark--footer.crt-wordmark--text .crt-wordmark__by em {
	font-size: 24px;
}

.crt-footer__blurb {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 24px;
	color: #444;
}

/* Link columns. */
.crt-footer__heading {
	margin: 0 0 14px;
	font-family: var(--crt-font-head);
	font-size: 18px;
	font-weight: 800;
	color: var(--crt-heading);
}

.crt-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.crt-footer__col a {
	font-size: 15px;
	color: #444;
	text-decoration: none;
}

.crt-footer__col a:hover {
	color: var(--crt-berry);
	text-decoration: underline;
}

.crt-footer__subscribe p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 24px;
	color: #444;
}

/* Subscribe mini-form. */
.crt-subscribe {
	position: relative;
}

.crt-subscribe input[type="email"] {
	width: 100%;
	background: #fff;
	border: 1px solid var(--crt-border);
	border-radius: 24px;
	padding: 13px 52px 13px 18px;
	font-family: inherit;
	font-size: 15px;
	color: var(--crt-body);
	transition: border-color var(--crt-transition), box-shadow var(--crt-transition);
}

.crt-subscribe input[type="email"]:focus {
	outline: none;
	border-color: var(--crt-berry);
	box-shadow: 0 0 0 3px rgba(172, 58, 126, 0.15);
}

.crt-subscribe button {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: var(--crt-berry);
	color: #fff;
	cursor: pointer;
	transition: background-color var(--crt-transition);
}

.crt-subscribe button svg {
	width: 15px;
	height: 15px;
	display: block;
}

.crt-subscribe button:hover {
	background: var(--crt-berry-dark);
}

/* Bottom strip. */
.crt-footer__bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid #e4e4e4;
	margin-top: 28px;
	padding: 18px 24px 24px;
	font-size: 14px;
	color: #555;
}

.crt-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #555;
	text-decoration: none;
	transition: color var(--crt-transition);
}

.crt-footer__credit:hover,
.crt-footer__credit:focus-visible {
	color: var(--crt-berry);
	text-decoration: underline;
}

.crt-gm8-mark {
	width: 20px;
	height: 20px;
	flex: none;
	color: var(--crt-berry);
}

@media (max-width: 1024px) {
	.crt-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.crt-footer__grid {
		grid-template-columns: 1fr;
	}

	.crt-footer__bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* =====================================================================
   21. Utility / misc components
   ===================================================================== */

/* Page title block. */
.crt-page-title {
	text-align: center;
	padding: 56px 20px 8px;
}

.crt-page-title h1 {
	margin: 0 0 18px;
	font-family: var(--crt-font-head);
	font-weight: 800;
	font-size: clamp(32px, 4.5vw, 48px);
	color: var(--crt-heading);
}

.crt-page-title .crt-divider {
	margin-inline: auto;
}

.crt-page-title__desc {
	margin: 18px auto 0;
	max-width: 640px;
	font-size: 18px;
	line-height: 30px;
}

/* Empty state (wishlist / no products found). */
.crt-empty-state {
	display: grid;
	gap: 18px;
	justify-items: center;
	text-align: center;
	padding: 60px 24px;
}

.crt-empty-state__icon {
	font-size: 64px;
	color: var(--crt-berry);
	opacity: 0.5;
}

/* Editor hint for unconfigured blocks. */
.crt-block-empty {
	border: 1px dashed var(--crt-border);
	border-radius: var(--crt-radius-field);
	padding: 20px;
	color: #777;
	background: #fafafa;
	font-size: 15px;
}

/* Rich text (WYSIWYG output). */
.crt-rich p {
	margin: 0 0 1.1em;
}

.crt-rich p:last-child {
	margin-bottom: 0;
}

.crt-rich a {
	color: var(--crt-berry);
	text-decoration: underline;
}

.crt-rich a:hover {
	color: var(--crt-berry-dark);
}

.crt-rich ul,
.crt-rich ol {
	margin: 0 0 1.1em;
	padding-left: 1.3em;
}

/* =====================================================================
   22. AOS + motion safety
   ===================================================================== */

/* Content must never stay invisible if AOS fails to boot —
   JS adds .crt-aos-ready to <html> right before AOS.init(). */
html:not(.crt-aos-ready) [data-aos] {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	[data-aos] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	* {
		scroll-behavior: auto !important;
	}
}

/* =====================================================================
   Responsive: shared section rhythm
   ===================================================================== */

@media (max-width: 768px) {
	:root {
		--crt-section-pad: 48px;
	}

	body {
		font-size: 16px;
		line-height: 27px;
	}

	.crt-hero,
	.crt-usps,
	.crt-ethos,
	.crt-band {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.crt-hero {
		padding-bottom: 0;
	}

	.crt-offer {
		padding: 60px 0;
	}

	.crt-sec-head__body,
	.crt-hero__body {
		font-size: 16px;
		line-height: 27px;
	}

	.crt-page-title {
		padding-top: 40px;
	}

	.crt-products__cta {
		margin-top: 32px;
	}
}

@media (max-width: 480px) {
	.crt-btn {
		font-size: 16px;
		padding: 13px 20px;
		gap: 10px;
		min-height: 50px;
	}

	.crt-btn__arrow {
		width: 28px;
		height: 28px;
	}

	.crt-btn__arrow svg {
		width: 14px;
		height: 14px;
	}

	.crt-eyebrow {
		font-size: 22px;
	}

	.crt-contact-info__yarnball {
		display: none;
	}
}

/* ===== Toast (wishlist feedback, injected by assets/js/woocommerce.js) ===== */
.crt-toast {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translate(-50%, 16px);
	background: var(--crt-heading);
	color: #fff;
	font-size: 15px;
	line-height: 1.4;
	padding: 13px 22px;
	border-radius: 30px;
	box-shadow: 0 10px 30px rgba(85, 73, 79, 0.28);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 200;
	max-width: min(92vw, 480px);
	text-align: center;
}
.crt-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}
