/* GoldenCrochetHook brand layer — warm big-blog personality: badges, wavy dividers, collage cards */

:root {
	--gch-gold: #d89b2a;
	--gch-gold-dark: #b37f1e;
	--gch-badge: #c1502e;
	--gch-green: #5b7355;
	--gch-bg: #fbf6ec;
	--gch-surface: #ffffff;
	--gch-text: #2b2013;
	--gch-text-secondary: #7a6f5d;
	--gch-border: #ede1c9;
	--gch-font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--gch-font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--gch-font-script: "Caveat", cursive;
}

body {
	background: var(--gch-bg);
	color: var(--gch-text);
	font-family: var(--gch-font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--gch-font-heading);
	font-weight: 700;
	text-transform: none;
	letter-spacing: normal;
	color: var(--gch-text);
}

a { color: var(--gch-gold-dark); }
a:hover, a:focus { opacity: 1; color: var(--gch-badge); }
.entry-title a { color: var(--gch-text); }

/* Top announcement bar */
.gch-topbar {
	background: var(--gch-gold);
	color: #fff;
	text-align: center;
	font-family: var(--gch-font-heading);
	font-weight: 600;
	font-size: 14px;
	padding: 10px 24px;
}

/* Header */
.site-header {
	background: var(--gch-surface);
	border-bottom: 1px solid var(--gch-border);
	position: sticky;
	top: 0;
	z-index: 100;
	transition: box-shadow 0.25s ease;
}

.site-header.gch-scrolled {
	box-shadow: 0 2px 16px rgba(43, 32, 19, 0.08);
}

.site-header .wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 20px 24px;
	text-align: center;
}

.site-title, .site-title a {
	font-family: var(--gch-font-heading);
	font-weight: 800;
	font-size: 26px;
	color: var(--gch-text);
}

.site-title a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.gch-logo-mark {
	display: inline-flex;
	flex: 0 0 auto;
	line-height: 0;
}

.gch-logo-text { display: inline-flex; align-items: baseline; }
.gch-logo-golden { color: var(--gch-text); }

.site-title .gch-script,
.gch-script {
	font-family: var(--gch-font-script);
	font-weight: 700;
	color: var(--gch-gold-dark);
	font-size: 1.25em;
	margin-left: 2px;
}

.site-description {
	font-family: var(--gch-font-body);
	color: var(--gch-text-secondary);
	font-size: 14px;
	margin-top: 2px;
}

/* Dot-separated minimal nav */
.nav-primary { border: none; }

.nav-primary .wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px 18px;
}

.nav-primary ul.genesis-nav-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-primary .menu-item { list-style: none; }

.nav-primary .menu-item + .menu-item::before {
	content: "\2022";
	margin: 0 16px;
	color: var(--gch-gold);
}

.nav-primary .genesis-nav-menu a {
	color: var(--gch-text);
	font-family: var(--gch-font-body);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.2s ease;
}

.nav-primary .genesis-nav-menu a:hover,
.nav-primary .genesis-nav-menu a[aria-current="page"] {
	color: var(--gch-gold-dark);
	opacity: 1;
}

/* Buttons — chunky rounded pill, gold default */
.wp-block-button__link {
	border-radius: 999px !important;
	background: var(--gch-gold) !important;
	color: #fff !important;
	padding: 14px 28px !important;
	font-family: var(--gch-font-heading);
	font-weight: 700;
	font-size: 15px;
	border: none !important;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

.wp-block-button__link:hover {
	background: var(--gch-gold-dark) !important;
	transform: translateY(-2px);
}

/* Hero */
.gch-hero {
	position: relative;
	max-width: 1240px;
	margin: 28px auto;
	padding: 0 24px;
}

.gch-hero-inner {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	min-height: 460px;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
}

.gch-hero-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(43, 32, 19, 0) 30%, rgba(43, 32, 19, 0.78) 100%);
}

.gch-hero-content {
	position: relative;
	z-index: 1;
	padding: 40px;
	max-width: 600px;
}

.gch-hero-eyebrow {
	display: inline-block;
	background: var(--gch-badge);
	color: #fff;
	font-family: var(--gch-font-heading);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.gch-hero-title {
	font-size: clamp(30px, 4.2vw, 46px);
	line-height: 1.1;
	color: #fff;
	margin: 0 0 20px;
}

.gch-hero-search {
	display: flex;
	max-width: 460px;
	background: #fff;
	border-radius: 999px;
	padding: 5px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.gch-hero-search-field {
	flex: 1;
	border: none;
	background: transparent;
	padding: 13px 18px;
	font-family: var(--gch-font-body);
	font-size: 15px;
	color: var(--gch-text);
}

.gch-hero-search-field:focus { outline: none; }

.gch-hero-search-submit {
	border: none;
	border-radius: 999px;
	background: var(--gch-gold);
	color: #fff;
	padding: 13px 24px;
	font-family: var(--gch-font-heading);
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.gch-hero-search-submit:hover { background: var(--gch-gold-dark); }

/* Starburst badge sticker */
.gch-badge-star {
	position: absolute;
	top: -18px;
	left: -18px;
	width: 108px;
	height: 108px;
	background: var(--gch-badge);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(-10deg);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	z-index: 5;
}

.gch-badge-star span {
	display: block;
	text-align: center;
	font-family: var(--gch-font-heading);
	font-weight: 800;
	font-size: 13px;
	line-height: 1.3;
	white-space: nowrap;
}

/* Section header with wavy divider */
.gch-section {
	max-width: 1240px;
	margin: 0 auto;
	padding: 40px 24px;
}

.gch-section-head {
	display: flex;
	align-items: center;
	gap: 18px;
	justify-content: center;
	margin-bottom: 32px;
}

.gch-section-head h2 {
	margin: 0;
	white-space: nowrap;
	font-size: 28px;
}

.gch-wave {
	flex: 1;
	max-width: 140px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='14' viewBox='0 0 40 14'%3E%3Cpath d='M0 7 Q10 0 20 7 T40 7' fill='none' stroke='%23D89B2A' stroke-width='2.5'/%3E%3C/svg%3E");
	background-repeat: repeat-x;
	background-size: 40px 14px;
}

/* Category collage cards */
.gch-cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.gch-cat-card {
	position: relative;
	display: block;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none !important;
	box-shadow: 0 6px 18px rgba(43, 32, 19, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gch-cat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 28px rgba(43, 32, 19, 0.16);
}

.gch-cat-card img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.gch-cat-card:hover img { transform: scale(1.06); }

.gch-cat-label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(43, 32, 19, 0.92) 0%, rgba(43, 32, 19, 0) 100%);
	color: #fff;
	padding: 32px 16px 16px;
	font-family: var(--gch-font-heading);
	font-weight: 700;
	font-size: 16px;
	text-align: center;
}

/* Intro copy under hero */
.gch-intro {
	max-width: 760px;
	margin: 0 auto;
	padding: 8px 24px 0;
	text-align: center;
	color: var(--gch-text-secondary);
	font-size: 18px;
}

/* Stats / trust bar */
.gch-stats-bar {
	background: #f3e6c9;
	border-radius: 28px;
	max-width: 1240px;
	margin: 0 auto;
	padding: 32px 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.gch-stat-num {
	font-family: var(--gch-font-heading);
	font-weight: 800;
	font-size: 36px;
	color: var(--gch-badge);
	line-height: 1.1;
}

.gch-stat-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--gch-text-secondary);
	margin-top: 4px;
}

/* How it works steps */
.gch-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.gch-step { text-align: center; padding: 0 12px; }

.gch-step-num {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: var(--gch-gold);
	color: #fff;
	font-family: var(--gch-font-heading);
	font-weight: 800;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.gch-step h3 { font-size: 19px; margin: 0 0 8px; }
.gch-step p { color: var(--gch-text-secondary); margin: 0; font-size: 15px; }

/* Wide banner card */
.gch-banner-wide {
	background: linear-gradient(120deg, var(--gch-gold) 0%, var(--gch-gold-dark) 100%);
	border-radius: 28px;
	padding: 44px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	color: #fff;
}

.gch-banner-wide h2 { color: #fff; margin: 0 0 8px; }
.gch-banner-wide p { color: rgba(255, 255, 255, 0.9); margin: 0; }
.gch-banner-wide .wp-block-button__link { background: #fff !important; color: var(--gch-text) !important; }
.gch-banner-wide .wp-block-button__link:hover { background: var(--gch-text) !important; color: #fff !important; }

/* Colored callout box */
.gch-callout {
	background: var(--gch-green);
	border-radius: 28px;
	padding: 44px;
	text-align: center;
	color: #fff;
}

.gch-callout h2 { color: #fff; margin: 0 0 10px; }
.gch-callout p { color: rgba(255, 255, 255, 0.88); margin: 0; }

.gch-callout-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 24px;
}

.gch-callout-pills a {
	background: #fff;
	color: var(--gch-text);
	border-radius: 999px;
	padding: 13px 24px;
	font-family: var(--gch-font-heading);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.gch-callout-pills a:hover {
	background: var(--gch-gold);
	color: #fff;
	opacity: 1;
}

/* About / brand teaser card */
.gch-about-card {
	background: var(--gch-surface);
	border: 1.5px solid var(--gch-border);
	border-radius: 28px;
	padding: 40px;
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}

.gch-about-icon {
	flex: 0 0 auto;
	width: 96px;
	height: 96px;
	border-radius: 999px;
	background: var(--gch-gold);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
}

.gch-about-text { flex: 1; min-width: 240px; }
.gch-about-text h2 { margin: 0 0 10px; }
.gch-about-text p { margin: 0 0 16px; color: var(--gch-text-secondary); }

/* Social icon row */
.gch-social-row {
	display: flex;
	gap: 12px;
	margin-top: 8px;
}

.gch-social-row a {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: var(--gch-bg);
	border: 1.5px solid var(--gch-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gch-text);
	text-decoration: none;
	font-size: 16px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.gch-social-row a:hover {
	background: var(--gch-gold);
	color: #fff;
	opacity: 1;
}

/* Footer */
.site-footer { background: var(--gch-text); color: #f3ece0; }

.site-footer a {
	color: #f3ece0;
	opacity: 0.85;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.site-footer a:hover { opacity: 1; color: var(--gch-gold); }

.site-footer .wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 52px 24px 0;
}

.gch-footer-inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(243, 236, 224, 0.15);
}

.gch-footer-brand {
	font-family: var(--gch-font-heading);
	font-weight: 800;
	font-size: 22px;
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	color: #fff;
}

.gch-footer-badge {
	display: inline-flex;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: var(--gch-gold);
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-size: 16px;
}

.gch-footer-col h3 {
	font-family: var(--gch-font-body);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #f3ece0;
	opacity: 0.7;
	margin: 0 0 14px;
}

.gch-footer-col ul { list-style: none; margin: 0; padding: 0; }
.gch-footer-col li { margin-bottom: 10px; }

.gch-footer-bottom {
	padding: 20px 0;
	font-size: 13px;
	opacity: 0.75;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.gch-footer-bottom p { margin: 0; }
.gch-back-top { font-weight: 700; }

.gch-affiliate-note {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px 24px;
	font-size: 12px;
	font-style: italic;
	opacity: 0.55;
	text-align: center;
}

/* Cards, images: subtle motion */
.entry-image img, .entry img, .wp-block-image img {
	transition: transform 0.35s ease;
	border-radius: 18px;
}

a:hover .entry-image img, a:hover.entry-image img { transform: scale(1.03); }

/* FAQ — soft rounded cards */
.gch-faq-item {
	background: var(--gch-surface);
	border: 1.5px solid var(--gch-border);
	border-radius: 18px;
	padding: 22px 26px;
	margin-bottom: 14px;
}

.gch-faq-item summary {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	font-family: var(--gch-font-heading);
	font-size: 17px;
	font-weight: 700;
	color: var(--gch-text);
}

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

.gch-faq-item summary::after {
	content: "+";
	flex: 0 0 auto;
	margin-left: 16px;
	font-family: var(--gch-font-body);
	font-size: 24px;
	color: var(--gch-gold-dark);
	transition: transform 0.2s ease;
}

.gch-faq-item[open] summary::after { transform: rotate(45deg); }

.gch-faq-item p {
	margin: 14px 0 0;
	color: var(--gch-text-secondary);
}

/* Category photography (interior pages) */
.gch-category-photo { margin: 0 0 20px; }
.gch-category-photo img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	border-radius: 20px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

@media (max-width: 900px) {
	.gch-cat-grid { grid-template-columns: repeat(2, 1fr); }
	.gch-footer-inner { grid-template-columns: 1fr 1fr; }
	.gch-stats-bar { grid-template-columns: repeat(2, 1fr); }
	.gch-steps { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
	.gch-cat-grid { grid-template-columns: 1fr; }
	.gch-footer-inner { grid-template-columns: 1fr; }
	.gch-hero-content { padding: 28px; }
	.gch-about-card { padding: 28px; flex-direction: column; text-align: center; }
	.site-title, .site-title a { font-size: 21px; }
	.gch-logo-mark svg { width: 32px; height: 32px; }
	.gch-banner-wide { padding: 28px; flex-direction: column; text-align: center; }
}
