/* =========================================================================
   Furniture Handicraft — Homepage stylesheet
   Maps to template-home.php sections.
   ========================================================================= */

:root {
	/* Surfaces & color */
	--fhc-bg:           #F6F3EB;
	--fhc-bg-soft:      #EFEADD;
	--fhc-card:         #ECE5D2;
	--fhc-card-img:     #F2EDDF;
	--fhc-border:       #E0D9C8;
	--fhc-ink:          #14191A;
	--fhc-ink-soft:     #3A3F40;
	--fhc-muted:        #7A766D;
	--fhc-dark:         #14191A;
	--fhc-gold:         #F5B100;

	/* Radii */
	--fhc-radius-sm:    12px;
	--fhc-radius-md:    18px;
	--fhc-radius-lg:    28px;
	--fhc-radius-pill:  999px;

	/* Shadows */
	--fhc-shadow-sm:    0 2px 8px rgba(15,20,20,0.04);
	--fhc-shadow-md:    0 8px 28px rgba(15,20,20,0.06);

	/* Font families */
	--fhc-font-sans:    'DM Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
	--fhc-font-display: 'DM Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;

	/* Heading sizes (responsive where appropriate) */
	--fhc-h1:           clamp(32px, 4.2vw, 69px);
	--fhc-h2:           clamp(28px, 3.2vw, 39px);
	--fhc-h3:           clamp(17px, 1.7vw, 21px);
	--fhc-h4:           18px;
	--fhc-h5:           15px;

	/* Body / text scale */
	--fhc-text-xxs:     9px;
	--fhc-text-xs:      11px;
	--fhc-text-sm:      12px;
	--fhc-text-md:      15px;
	--fhc-text-lg:      18px;
	--fhc-text-xl:      21px;

	/* Font weights */
	--fhc-fw-regular:   400;
	--fhc-fw-medium:    500;
	--fhc-fw-semibold:  600;
	--fhc-fw-bold:      700;

	/* Line heights */
	--fhc-lh-tight:     1.16;
	--fhc-lh-snug:      1.3;
	--fhc-lh-base:      1.55;
	--fhc-lh-relaxed:   1.6;
	--fhc-lh-loose:     1.7;

	/* Spacing scale (4px-based) */
	--fhc-space-1:      4px;
	--fhc-space-2:      8px;
	--fhc-space-3:      12px;
	--fhc-space-4:      16px;
	--fhc-space-5:      22px;
	--fhc-space-6:      28px;
	--fhc-space-7:      32px;
	--fhc-space-8:      44px;
	--fhc-space-9:      56px;
	--fhc-space-10:     60px;
	--fhc-space-11:     80px;
	--fhc-space-12:     96px;
}

/* Reset & base ------------------------------------------------------------ */
.fhc-home,
.fhc-home * {
	box-sizing: border-box;
}
.fhc-home {
	margin: 0;
	background: var(--fhc-bg);
	color: var(--fhc-ink);
	font-family: var(--fhc-font-sans);
	font-size: var(--fhc-text-lg);
	line-height: var(--fhc-lh-base);
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}
html:has(.fhc-home) { scroll-behavior: smooth; }
.fhc-home .fhc-section,
.fhc-home #collection,
.fhc-home #offer,
.fhc-home #faq { scroll-margin-top: 80px; }
.fhc-home a { color: inherit; text-decoration: none; }
.fhc-home img { max-width: 100%; display: block; height: auto; }
.fhc-home h1, .fhc-home h2, .fhc-home h3, .fhc-home h4 {
	font-family: var(--fhc-font-display);
	font-weight: var(--fhc-fw-semibold);
	margin: 0;
	letter-spacing: -0.01em;
	color: var(--fhc-ink);
}
.fhc-home h1 { font-size: var(--fhc-h1); line-height: var(--fhc-lh-tight); }
.fhc-home h2 { font-size: var(--fhc-h2); line-height: var(--fhc-lh-snug); }
.fhc-home h3 { font-size: var(--fhc-h3); line-height: var(--fhc-lh-snug); }
.fhc-home h4 { font-size: var(--fhc-h4); line-height: var(--fhc-lh-snug); }
/* Inverted-color headings on dark backgrounds — bumped specificity so
   they always win over the .fhc-home h1/h2/h3 reset above. */
.fhc-home .fhc-hero__title,
.fhc-home .fhc-cta h2,
.fhc-home .fhc-cat-card h3 {
	color: #fff;
}
.fhc-home p { margin: 0; }

.fhc-container {
	/* max-width: 1200px */
	margin: 0 auto;
	padding-inline: 60px;
}

.fhc-section {
	padding-block: var(--fhc-space-12);
}
.fhc-section__head {
	text-align: center;
	max-width: 620px;
	margin: 0 auto var(--fhc-space-9);
}
.fhc-section__head h2 {
	margin-bottom: var(--fhc-space-3);
	line-height: 1.2;
}
.fhc-section__head p {
	color: var(--fhc-muted);
	font-size: var(--fhc-text-md);
	line-height: var(--fhc-lh-relaxed);
}

/* Buttons ----------------------------------------------------------------- */
.fhc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--fhc-space-2);
	padding: 13px 38px;
	border-radius: var(--fhc-radius-pill);
	font-weight: var(--fhc-fw-medium);
	font-size: 14px;
	line-height: 1;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all .25s ease;
	white-space: nowrap;
}
.fhc-btn em { font-style: normal; }
.fhc-home .fhc-btn--light {
	background: #fff;
	color: var(--fhc-ink);
}
.fhc-home .fhc-btn--light:hover { background: #f4f1ea; }
.fhc-home .fhc-btn--dark {
	background: var(--fhc-dark);
	color: #fff;
}
.fhc-home .fhc-btn--dark:hover { background: #1d2727; color: #fff; }
.fhc-home .fhc-btn--outline {
	background: transparent;
	color: var(--fhc-ink);
	border-color: var(--fhc-ink);
}
.fhc-home .fhc-btn--outline:hover { background: var(--fhc-ink); color: #fff; }

/* Header ------------------------------------------------------------------ */
.fhc-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(246,243,235,0.85);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--fhc-border);
}
.fhc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 16px;
	gap: 28px;
}
.fhc-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: var(--fhc-fw-semibold);
	font-size: var(--fhc-text-xl);
	letter-spacing: -0.005em;
	color: var(--fhc-ink);
}
.fhc-logo__mark {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: var(--fhc-dark);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.fhc-logo--inverse { color: #fff; }
.fhc-logo--inverse .fhc-logo__mark { background: #fff; color: var(--fhc-dark); }

.fhc-nav {
	display: flex;
	gap: 32px;
	align-items: center;
}
.fhc-nav a {
	font-size: var(--fhc-text-md);
	color: var(--fhc-ink-soft);
	font-weight: var(--fhc-fw-medium);
	position: relative;
	padding-block: 6px;
	transition: color .2s;
}
.fhc-nav a:hover,
.fhc-nav a.is-active { color: var(--fhc-ink); }
.fhc-nav a.is-active::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1.5px;
	background: var(--fhc-ink);
	border-radius: 2px;
}

.fhc-header__actions {
	display: flex;
	gap: 6px;
	align-items: center;
}
.fhc-icon-btn {
	width: 40px;
	height: 40px;
	border-radius: var(--fhc-radius-pill);
	border: 1px solid var(--fhc-border);
	background: rgba(255,255,255,0.5);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--fhc-ink);
	position: relative;
	transition: background .2s, border-color .2s;
}
.fhc-icon-btn:hover { background: #fff; border-color: var(--fhc-ink); }
.fhc-cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--fhc-dark);
	color: #fff;
	font-size: 10.5px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Hero -------------------------------------------------------------------- */
.fhc-hero {
	background-size: cover;
	background-position: center;
	color: #fff;
	width: 100%;
	margin: 0;
	overflow: hidden;
	position: relative;
}
.fhc-hero__inner {
	min-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 24px 80px;
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	gap: var(--fhc-space-6);
}
.fhc-hero__title {
	font-size: var(--fhc-h1);
	color: #fff;
	font-weight: var(--fhc-fw-medium);
	line-height: var(--fhc-lh-tight);
	margin-bottom: var(--fhc-space-7);
}
.fhc-hero__subtitle {
	max-width: 560px;
	color: rgba(255,255,255,0.85);
	font-size: var(--fhc-text-lg);
	line-height: var(--fhc-lh-loose);
	margin-bottom: var(--fhc-space-8);
}
.fhc-hero__scroll {
	position: absolute;
	bottom: 21%;
	left: 50%;
	transform: translateX(-50%);
	width: 38px;
	height: 38px;
	border-radius: var(--fhc-radius-pill);
	border: 1px solid rgba(255,255,255,0.5);
	background: rgba(255,255,255,0.1);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Collections grid -------------------------------------------------------- */
.fhc-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--fhc-space-5);
}
@media (max-width: 900px) { .fhc-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .fhc-product-grid { grid-template-columns: 1fr; } }

.fhc-card {
	background: var(--fhc-card);
	border-radius: var(--fhc-radius-md);
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: var(--fhc-space-3);
	transition: transform .25s ease, box-shadow .25s ease;
}
.fhc-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--fhc-shadow-md);
}
.fhc-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 4px 4px 0;
}
.fhc-badge {
	font-size: var(--fhc-text-xxs);
	font-weight: var(--fhc-fw-semibold);
	padding: 4px 10px;
	border-radius: var(--fhc-radius-pill);
	background: #fff;
	color: var(--fhc-ink);
	letter-spacing: 0.02em;
}
.fhc-badge.is-sale  { background: #F5D9B8; color: #7a4711; }
.fhc-badge.is-rated { background: #D6E0BF; color: #34491b; }
.fhc-badge.is-price { background: #C9D7E5; color: #1d3a5c; }
.fhc-swatches { display: inline-flex; gap: 4px; }
.fhc-swatches span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 1px solid rgba(0,0,0,0.08);
	display: inline-block;
}
.fhc-card__media {
	display: flex;
	aspect-ratio: 1 / 0.92;
	border-radius: var(--fhc-radius-sm);
	overflow: hidden;
	background: var(--fhc-card-img);
	align-items: center;
	justify-content: center;
}
.fhc-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.fhc-card:hover .fhc-card__media img { transform: scale(1.04); }
.fhc-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 2px 6px 6px;
}
.fhc-card__meta { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.fhc-card__name {
	font-size: var(--fhc-text-md);
	font-weight: var(--fhc-fw-medium);
	color: var(--fhc-ink);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-family: var(--fhc-font-sans);
}
.fhc-card__price {
	font-size: var(--fhc-text-sm);
	color: var(--fhc-ink-soft);
	font-weight: var(--fhc-fw-semibold);
}
.fhc-card__price .woocommerce-Price-amount { font-weight: var(--fhc-fw-semibold); }
.fhc-card__cart {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: #fff;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .2s, transform .2s;
}
.fhc-card__cart:hover { background: #1d2727; transform: scale(1.05); }

.fhc-section__cta {
	margin-top: var(--fhc-space-7);
	text-align: center;
}

/* Most Recommend - category cards ---------------------------------------- */
.fhc-cat-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	gap: var(--fhc-space-4);
	min-height: 580px;
}
.fhc-cat-card {
	position: relative;
	border-radius: var(--fhc-radius-md);
	overflow: hidden;
	background-size: cover;
	background-position: center;
	color: #fff;
	display: flex;
	align-items: flex-end;
	padding: var(--fhc-space-5);
	min-height: 220px;
	transition: transform .3s ease;
}
.fhc-cat-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.fhc-cat-card:hover { transform: translateY(-2px); }
.fhc-cat-card--lg  { grid-row: span 2; }
.fhc-cat-card--wide { grid-column: span 2; }
.fhc-cat-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
}
.fhc-cat-card h3 {
	color: #fff;
	font-weight: var(--fhc-fw-medium);
	max-width: 65%;
	line-height: 1.25;
}
.fhc-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(255,255,255,0.95);
	color: var(--fhc-ink);
	font-size: var(--fhc-text-xs);
	font-weight: var(--fhc-fw-medium);
	padding: 7px 13px;
	border-radius: var(--fhc-radius-pill);
	white-space: nowrap;
	transition: background .2s;
}
.fhc-pill:hover { background: #fff; }
.fhc-pill em { font-style: normal; }

@media (max-width: 800px) {
	.fhc-cat-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}
	.fhc-cat-card--lg { grid-row: span 1; grid-column: span 2; }
	.fhc-cat-card--wide { grid-column: span 2; }
}

/* What we offer ---------------------------------------------------------- */
.fhc-offer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--fhc-space-5);
}
@media (max-width: 800px) { .fhc-offer-grid { grid-template-columns: 1fr; } }
.fhc-offer-card {
	background: var(--fhc-card);
	border-radius: var(--fhc-radius-md);
	padding: var(--fhc-space-7) var(--fhc-space-6);
	display: flex;
	flex-direction: column;
	gap: var(--fhc-space-3);
}
.fhc-offer-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(255,255,255,0.6);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--fhc-dark);
	margin-bottom: 4px;
}
.fhc-offer-card h3 {
	font-family: var(--fhc-font-sans);
	font-weight: var(--fhc-fw-semibold);
	letter-spacing: -0.005em;
}
.fhc-offer-card p {
	font-size: var(--fhc-text-md);
	color: var(--fhc-muted);
	line-height: var(--fhc-lh-base);
}

/* Testimonials ----------------------------------------------------------- */
.fhc-test-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--fhc-space-4);
}
@media (max-width: 900px) { .fhc-test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fhc-test-grid { grid-template-columns: 1fr; } }
.fhc-test-card {
	background: var(--fhc-card);
	border-radius: var(--fhc-radius-md);
	padding: var(--fhc-space-4);
	display: flex;
	flex-direction: column;
	gap: var(--fhc-space-3);
}
.fhc-test-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
}
.fhc-test-card__avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.fhc-test-card__person {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}
.fhc-test-card__person strong {
	font-size: var(--fhc-text-sm);
	color: var(--fhc-ink);
	font-weight: var(--fhc-fw-semibold);
}
.fhc-test-card__person span {
	font-size: var(--fhc-text-xs);
	color: var(--fhc-muted);
}
.fhc-test-card__rating {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: var(--fhc-text-xs);
	font-weight: var(--fhc-fw-semibold);
	color: var(--fhc-ink);
}
.fhc-test-card__media {
	border-radius: var(--fhc-radius-sm);
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--fhc-card-img);
}
.fhc-test-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fhc-test-card__body h4 {
	font-family: var(--fhc-font-sans);
	font-size: var(--fhc-text-md);
	font-weight: var(--fhc-fw-semibold);
	margin-bottom: 5px;
	color: var(--fhc-ink);
}
.fhc-test-card__body p {
	font-size: var(--fhc-text-sm);
	color: var(--fhc-muted);
	line-height: var(--fhc-lh-base);
}

/* FAQ -------------------------------------------------------------------- */
.fhc-faq .fhc-section__head .fhc-btn { margin-top: var(--fhc-space-4); }
.fhc-faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--fhc-space-3);
	/* max-width: 980px; */
	margin: 0 auto;
}
@media (max-width: 800px) { .fhc-faq-grid { grid-template-columns: 1fr; } }
.fhc-faq-item {
	background: var(--fhc-card);
	border: 1px solid transparent;
	border-radius: var(--fhc-radius-md);
	padding: var(--fhc-space-4) var(--fhc-space-5);
	transition: box-shadow .25s ease, border-color .2s;
}
.fhc-faq-item[open] {
	box-shadow: var(--fhc-shadow-sm);
	border-color: var(--fhc-border);
}
.fhc-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--fhc-space-3);
	cursor: pointer;
	list-style: none;
	font-size: var(--fhc-text-md);
	font-weight: var(--fhc-fw-medium);
	color: var(--fhc-ink);
}
.fhc-faq-item summary::-webkit-details-marker { display: none; }
.fhc-faq-item__chev {
	transition: transform .25s ease;
	flex-shrink: 0;
	color: var(--fhc-ink);
	opacity: 0.7;
}
.fhc-faq-item[open] .fhc-faq-item__chev { transform: rotate(180deg); }
.fhc-faq-item p {
	margin-top: var(--fhc-space-3);
	font-size: var(--fhc-text-sm);
	color: var(--fhc-muted);
	line-height: var(--fhc-lh-relaxed);
}

/* CTA -------------------------------------------------------------------- */
.fhc-cta {
	background-size: cover;
	background-position: center;
	color: #fff;
	border-radius: var(--fhc-radius-lg);
	margin: 0 var(--fhc-space-10) var(--fhc-space-12);
	overflow: hidden;
}
@media (max-width: 760px) { .fhc-cta { margin: 0 16px 60px; border-radius: 18px; } }
.fhc-cta__inner {
	min-height: 390px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--fhc-space-11) var(--fhc-space-6);
	max-width: 1180px;
	margin: 0 auto;
}
.fhc-cta h2 {
	color: #fff;
	font-weight: var(--fhc-fw-medium);
	line-height: 1.2;
	margin-bottom: var(--fhc-space-3);
	font-size: var(--fhc-h1);
}
.fhc-cta p {
	color: rgba(255,255,255,0.82);
	font-size: var(--fhc-text-md);
	line-height: var(--fhc-lh-relaxed);
	max-width: 540px;
	margin-bottom: var(--fhc-space-6);
}

/* Footer ----------------------------------------------------------------- */
.fhc-footer {
	background: var(--fhc-dark);
	color: rgba(255,255,255,0.7);
	margin-top: 0;
}
.fhc-footer__inner {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: var(--fhc-space-10);
	padding-block: var(--fhc-space-11);
}
@media (max-width: 900px) {
	.fhc-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.fhc-footer__inner { grid-template-columns: 1fr; }
}
.fhc-footer__brand {
	grid-column: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 360px;
}
.fhc-footer__cols {
	grid-column: 2 / -1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
@media (max-width: 900px) {
	.fhc-footer__cols { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
	.fhc-footer__cols { grid-template-columns: 1fr; }
}
.fhc-footer__tag {
	font-size: var(--fhc-text-sm);
	color: rgba(255,255,255,0.55);
	line-height: var(--fhc-lh-relaxed);
	margin-bottom: 6px;
}
.fhc-footer__cols h5 {
	color: #fff;
	font-family: var(--fhc-font-sans);
	font-size: var(--fhc-h5);
	font-weight: var(--fhc-fw-semibold);
	margin: 0 0 var(--fhc-space-4);
	letter-spacing: -0.005em;
}
.fhc-footer__cols a {
	display: block;
	margin-bottom: 11px;
	font-size: var(--fhc-text-sm);
	color: rgba(255,255,255,0.55);
	transition: color .2s;
}
.fhc-footer__cols a:hover { color: #fff; }

.fhc-footer__newsletter label {
	display: block;
	font-size: var(--fhc-text-md);
	color: rgba(255,255,255,0.6);
	margin-bottom: var(--fhc-space-2);
}
.fhc-footer__newsletter > div {
	display: flex;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--fhc-radius-pill);
	padding: 4px;
	max-width: 360px;
}
.fhc-footer__newsletter input {
	flex: 1;
	background: transparent;
	border: 0;
	outline: 0;
	color: #fff;
	font-size: var(--fhc-text-md);
	padding: 8px 14px;
	min-width: 0;
}
.fhc-footer__newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.fhc-footer__newsletter button {
	background: #fff;
	color: var(--fhc-ink);
	border: 0;
	border-radius: var(--fhc-radius-pill);
	padding: 9px 20px;
	font-size: var(--fhc-text-md);
	font-weight: var(--fhc-fw-medium);
	cursor: pointer;
	white-space: nowrap;
}

.fhc-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-block: var(--fhc-space-5);
}
.fhc-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--fhc-space-4);
	font-size: var(--fhc-text-sm);
}
.fhc-footer__bottom small { color: rgba(255,255,255,0.5); }
.fhc-footer__social {
	display: inline-flex;
	gap: 18px;
}
.fhc-footer__social a {
	color: rgba(255,255,255,0.6);
	transition: color .2s;
}
.fhc-footer__social a:hover { color: #fff; }

/* Hamburger button — hidden on desktop, visible on mobile -----------------*/
.fhc-burger {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: var(--fhc-radius-pill);
	border: 1px solid var(--fhc-border);
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 0;
	color: var(--fhc-ink);
}
.fhc-burger span {
	width: 16px;
	height: 1.5px;
	background: currentColor;
	transition: transform .25s ease, opacity .2s ease;
}
.fhc-burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.fhc-burger.is-open span:nth-child(2) { opacity: 0; }
.fhc-burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Responsive — tablet (≤960px) -------------------------------------------- */
@media (max-width: 960px) {
	.fhc-container { padding-inline: 32px; }
	.fhc-section { padding-block: var(--fhc-space-11); }
	.fhc-section__head { margin-bottom: var(--fhc-space-7); }
	.fhc-cta { margin-inline: 32px; }
	.fhc-cta__inner { padding: var(--fhc-space-9) var(--fhc-space-5); min-height: 320px; }
	.fhc-footer__inner { gap: var(--fhc-space-7); padding-block: var(--fhc-space-9); }
}

/* Responsive — mobile (≤640px) -------------------------------------------- */
@media (max-width: 640px) {
	.fhc-container { padding-inline: 20px; }
	.fhc-section { padding-block: var(--fhc-space-9); }
	.fhc-section__head { margin-bottom: var(--fhc-space-6); }

	/* Header — hide desktop nav, show hamburger */
	.fhc-nav {
		position: fixed;
		top: 0px;
		left: 0; right: 0;
		flex-direction: column;
		gap: 0;
		background: var(--fhc-bg);
		border-bottom: 1px solid var(--fhc-border);
		padding: 12px 24px 20px;
		transform: translateY(-110%);
		transition: transform .3s ease;
		z-index: 49;
	}
	.fhc-nav.is-open { transform: translateY(0); }
	.fhc-nav a { padding-block: 12px; font-size: var(--fhc-text-md); width: 100%; }
	.fhc-burger { display: inline-flex; }
	.fhc-header__inner { gap: 12px; padding-block: 12px; }
	.fhc-icon-btn { width: 36px; height: 36px; }

	/* Hero */
	.fhc-hero__inner { min-height: 80vh; padding: 0 16px 60px; gap: 18px; }
	.fhc-hero__title { margin-bottom: var(--fhc-space-4); }
	.fhc-hero__subtitle { margin-bottom: var(--fhc-space-6); padding: 0 8px; }
	.fhc-hero__scroll { bottom: 24px; }

	/* Cards / grids */
	.fhc-product-grid,
	.fhc-test-grid,
	.fhc-offer-grid,
	.fhc-faq-grid { gap: var(--fhc-space-3); }
	.fhc-cat-grid { min-height: auto; gap: var(--fhc-space-3); }
	.fhc-cat-card { min-height: 200px; padding: var(--fhc-space-4); }
	.fhc-offer-card { padding: var(--fhc-space-6) var(--fhc-space-5); }

	/* CTA */
	.fhc-cta { margin: 0 16px var(--fhc-space-9); }
	.fhc-cta__inner { padding: var(--fhc-space-8) var(--fhc-space-4); min-height: 280px; }

	/* Buttons slightly smaller on mobile */
	.fhc-btn { padding: 12px 28px; font-size: 13.5px; }

	/* Footer */
	.fhc-footer__inner { gap: var(--fhc-space-6); padding-block: var(--fhc-space-7); }
	.fhc-footer__cols { gap: var(--fhc-space-5); }
	.fhc-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Responsive — small mobile (≤380px) -------------------------------------- */
@media (max-width: 380px) {
	.fhc-container { padding-inline: 16px; }
	.fhc-cta { margin-inline: 12px; }
	.fhc-cat-card--lg, .fhc-cat-card--wide { grid-column: span 2; }
}

/* Hide WP admin bar gap if logged-in --------------------------------------*/
.fhc-home #wpadminbar ~ .fhc-header { top: 32px; }
@media (max-width: 782px) { .fhc-home #wpadminbar ~ .fhc-header { top: 46px; } }
