/* =========================================================
   Honey Paper — main stylesheet
   ========================================================= */

:root {
	--hp-background: #FFFDF8;
	--hp-cream: #F9F6EF;
	--hp-butter-yellow: #F6D978;
	--hp-gold-accent: #C89F2D;
	--hp-text: #40382E;
	--hp-light-gray: #F3F3F3;
	--hp-white: #FFFFFF;
	--hp-button-radius: 999px;

	--hp-font-heading: 'DM Serif Display', Georgia, serif;
	--hp-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

	--hp-radius-sm: 14px;
	--hp-radius-md: 22px;
	--hp-radius-lg: 32px;

	--hp-shadow-soft: 0 10px 30px rgba(64, 56, 46, 0.08);
	--hp-shadow-med: 0 18px 45px rgba(64, 56, 46, 0.12);
	--hp-shadow-lift: 0 24px 60px rgba(200, 159, 45, 0.18);

	--hp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */

body {
	font-family: var(--hp-font-body);
	font-size: 16px;
	line-height: 1.7;
	background: var(--hp-background);
	color: var(--hp-text);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: var(--hp-font-heading);
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 0.5em;
	color: var(--hp-text);
}

h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

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

.hp-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.hp-section {
	padding: 96px 0;
}

.hp-section__heading {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
}

.hp-eyebrow {
	display: inline-block;
	font-family: var(--hp-font-body);
	font-weight: 600;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hp-gold-accent);
	margin-bottom: 14px;
}

/* ---------- Reveal-on-scroll ---------- */

[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s var(--hp-ease), transform 0.8s var(--hp-ease);
}
[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */

.hp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: var(--hp-button-radius);
	font-family: var(--hp-font-body);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.35s var(--hp-ease), box-shadow 0.35s var(--hp-ease), background-color 0.35s var(--hp-ease);
	white-space: nowrap;
}

.hp-btn--primary {
	background: var(--hp-gold-accent);
	color: var(--hp-white);
	box-shadow: var(--hp-shadow-soft);
}
.hp-btn--primary:hover {
	background: #b58e26;
	transform: translateY(-2px);
	box-shadow: var(--hp-shadow-lift);
}

.hp-btn--ghost {
	background: transparent;
	color: var(--hp-text);
	border-color: rgba(64, 56, 46, 0.2);
}
.hp-btn--ghost:hover {
	background: var(--hp-cream);
	border-color: var(--hp-gold-accent);
	transform: translateY(-2px);
}

.hp-btn--lg { padding: 17px 38px; font-size: 1rem; }

/* ---------- Header ---------- */

.hp-site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 253, 248, 0.85);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid rgba(64, 56, 46, 0.06);
}

.hp-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	gap: 24px;
}

.hp-site-title {
	font-family: var(--hp-font-heading);
	font-size: 1.5rem;
	text-decoration: none;
	color: var(--hp-text);
}

.hp-nav-menu {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.hp-nav-menu a {
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--hp-text);
	position: relative;
	padding-bottom: 4px;
}
.hp-nav-menu a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 1.5px;
	background: var(--hp-gold-accent);
	transition: width 0.3s var(--hp-ease);
}
.hp-nav-menu a:hover::after { width: 100%; }

.hp-site-header__actions { display: flex; align-items: center; gap: 18px; }

.hp-cart-icon { position: relative; display: inline-flex; color: var(--hp-text); }
.hp-cart-count {
	position: absolute; top: -8px; right: -10px;
	background: var(--hp-gold-accent); color: #fff;
	font-size: 0.65rem; font-weight: 700;
	border-radius: 50%; width: 18px; height: 18px;
	display: flex; align-items: center; justify-content: center;
}

.hp-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none; border: 0; cursor: pointer;
	padding: 6px;
}
.hp-menu-toggle span {
	width: 22px; height: 2px; background: var(--hp-text);
	border-radius: 2px;
}

.hp-breadcrumbs-wrap { padding: 20px 24px 0; }
.hp-breadcrumbs ol { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0; font-size: 0.85rem; color: #8a8072; }
.hp-breadcrumbs a { text-decoration: none; color: #8a8072; }
.hp-breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; }

/* ---------- Hero ---------- */

.hp-hero { padding: 64px 0 100px; overflow: hidden; }
.hp-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 64px;
	align-items: center;
}
.hp-hero__heading { margin-bottom: 20px; }
.hp-hero__subheading { font-size: 1.1rem; color: #6d6355; max-width: 480px; margin-bottom: 34px; }
.hp-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hp-hero__trust { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #8a8072; }
.hp-hero__trust span:first-child { color: var(--hp-gold-accent); letter-spacing: 2px; }

.hp-hero__visual { position: relative; }
.hp-hero__mockup-frame {
	background: var(--hp-cream);
	border-radius: var(--hp-radius-lg);
	padding: 28px;
	box-shadow: var(--hp-shadow-med);
	transition: transform 0.6s var(--hp-ease);
}
.hp-hero__mockup-frame:hover { transform: translateY(-6px) rotate(-0.4deg); }
.hp-hero__mockup-frame img { border-radius: var(--hp-radius-md); }

.hp-hero__badge {
	position: absolute;
	bottom: -18px; left: 32px;
	background: var(--hp-white);
	padding: 12px 22px;
	border-radius: var(--hp-radius-sm);
	box-shadow: var(--hp-shadow-soft);
	font-weight: 600;
	font-size: 0.85rem;
}

/* Decorative placeholder art (used until real photography is uploaded) */
.hp-placeholder-art {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: var(--hp-radius-md);
	background: linear-gradient(150deg, var(--hp-butter-yellow) 0%, var(--hp-cream) 60%);
	overflow: hidden;
}
.hp-placeholder-art__sheet {
	position: absolute;
	background: var(--hp-white);
	border-radius: var(--hp-radius-sm);
	box-shadow: var(--hp-shadow-soft);
}
.hp-placeholder-art--hero .hp-placeholder-art__sheet--1 { width: 62%; height: 72%; top: 10%; left: 8%; }
.hp-placeholder-art--hero .hp-placeholder-art__sheet--2 { width: 46%; height: 50%; bottom: 8%; right: 6%; background: var(--hp-cream); }
.hp-placeholder-art--hero .hp-placeholder-art__sheet--3 { width: 30%; height: 30%; top: 6%; right: 10%; background: var(--hp-butter-yellow); }
.hp-placeholder-art--bundle { aspect-ratio: 4/5; }
.hp-placeholder-art--card { aspect-ratio: 1/1; border-radius: var(--hp-radius-sm); }
.hp-placeholder-art--lifestyle { aspect-ratio: 4/5; border-radius: var(--hp-radius-lg); }
.hp-placeholder-art--404 { max-width: 260px; margin: 0 auto 32px; }
.hp-placeholder-art--thankyou { max-width: 220px; margin: 0 auto 24px; }

/* ---------- Cards / grids ---------- */

.hp-card-grid {
	display: grid;
	gap: 28px;
}
.hp-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hp-card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.hp-card {
	background: var(--hp-white);
	border-radius: var(--hp-radius-md);
	padding: 32px;
	box-shadow: var(--hp-shadow-soft);
	transition: transform 0.45s var(--hp-ease), box-shadow 0.45s var(--hp-ease);
}
.hp-card:hover { transform: translateY(-6px); box-shadow: var(--hp-shadow-med); }

.hp-card--included { text-align: left; }
.hp-card__icon {
	width: 52px; height: 52px;
	border-radius: 16px;
	background: var(--hp-cream);
	display: flex; align-items: center; justify-content: center;
	color: var(--hp-gold-accent);
	margin-bottom: 18px;
}
.hp-card__icon svg { width: 26px; height: 26px; }

.hp-card--testimonial { display: flex; flex-direction: column; gap: 12px; }
.hp-stars { color: var(--hp-gold-accent); letter-spacing: 2px; }
.hp-testimonial__name { font-weight: 600; color: var(--hp-gold-accent); margin-top: auto; }

.hp-card--post { padding: 0; overflow: hidden; }
.hp-card--post__link { display: block; text-decoration: none; color: inherit; padding: 20px; }
.hp-card--post__image { border-radius: var(--hp-radius-sm); overflow: hidden; margin: -20px -20px 16px; }
.hp-card--post__image img { transition: transform 0.6s var(--hp-ease); }
.hp-card--post:hover .hp-card--post__image img { transform: scale(1.05); }

/* ---------- Bundle section ---------- */

.hp-bundle__card {
	position: relative;
	background: var(--hp-cream);
	border-radius: var(--hp-radius-lg);
	padding: 56px;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: center;
	box-shadow: var(--hp-shadow-med);
}

.hp-badge {
	display: inline-block;
	padding: 8px 18px;
	border-radius: var(--hp-button-radius);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.hp-badge--popular { background: var(--hp-gold-accent); color: #fff; position: absolute; top: 28px; left: 28px; }
.hp-badge--sale { background: var(--hp-butter-yellow); color: var(--hp-text); position: absolute; top: 14px; left: 14px; z-index: 2; }

.hp-bundle__list { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.hp-bundle__list li { padding-left: 28px; position: relative; }
.hp-bundle__list li::before {
	content: '✓';
	position: absolute; left: 0; top: 0;
	color: var(--hp-gold-accent);
	font-weight: 700;
}
.hp-bundle__list-bonus { font-weight: 600; }

.hp-price-block { display: flex; align-items: baseline; gap: 12px; margin: 20px 0; flex-wrap: wrap; }
.hp-price-now { font-family: var(--hp-font-heading); font-size: 2.2rem; color: var(--hp-text); }
.hp-price-was { text-decoration: line-through; color: #a89e8e; font-size: 1.1rem; }
.hp-price-save { background: var(--hp-butter-yellow); padding: 4px 12px; border-radius: var(--hp-button-radius); font-size: 0.8rem; font-weight: 700; }

.hp-bundle__note { font-size: 0.85rem; color: #8a8072; margin-top: 12px; }

/* ---------- Benefits ---------- */

.hp-benefits__grid {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 32px;
}
.hp-benefits__item { display: flex; align-items: center; gap: 12px; color: var(--hp-text); }
.hp-benefits__item svg { color: var(--hp-gold-accent); flex-shrink: 0; }

/* ---------- Lifestyle ---------- */

.hp-lifestyle__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.hp-lifestyle__copy p { font-size: 1.05rem; color: #6d6355; max-width: 440px; }

/* ---------- FAQ ---------- */

.hp-accordion { max-width: 760px; margin: 0 auto; }
.hp-accordion__item { border-bottom: 1px solid rgba(64,56,46,0.1); }
.hp-accordion__trigger {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between;
	background: none; border: 0;
	padding: 22px 4px;
	font-family: var(--hp-font-body);
	font-weight: 600; font-size: 1.02rem;
	color: var(--hp-text);
	cursor: pointer;
	text-align: left;
}
.hp-accordion__trigger svg { transition: transform 0.3s var(--hp-ease); flex-shrink: 0; margin-left: 16px; }
.hp-accordion__trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.hp-accordion__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s var(--hp-ease);
}
.hp-accordion__panel p { padding-bottom: 20px; color: #6d6355; max-width: 640px; }

/* ---------- Final CTA ---------- */

.hp-final-cta { background: var(--hp-cream); border-radius: var(--hp-radius-lg); margin: 0 24px; }
.hp-final-cta__inner { text-align: center; max-width: 560px; margin: 0 auto; }

/* ---------- Footer ---------- */

.hp-site-footer { background: var(--hp-cream); margin-top: 60px; padding-top: 64px; }

.hp-newsletter-band {
	background: var(--hp-white);
	border-radius: var(--hp-radius-lg);
	padding: 40px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	box-shadow: var(--hp-shadow-soft);
	transform: translateY(-64px);
	margin-bottom: -24px;
}
.hp-newsletter-band__text h3 { margin: 0; font-size: 1.3rem; max-width: 380px; }
.hp-newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 420px; }
.hp-newsletter-form input {
	flex: 1;
	padding: 14px 20px;
	border-radius: var(--hp-button-radius);
	border: 1px solid rgba(64,56,46,0.15);
	font-family: var(--hp-font-body);
}
.hp-newsletter-form__note { text-align: center; font-size: 0.85rem; color: var(--hp-gold-accent); margin-top: 12px; }

.hp-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding: 24px 24px 48px;
}
.hp-footer-brand p { color: #8a8072; max-width: 260px; }
.footer-widget-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.hp-footer-col ul, .hp-footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.hp-footer-col a, .hp-footer-menu a { text-decoration: none; color: #6d6355; }
.hp-footer-col a:hover, .hp-footer-menu a:hover { color: var(--hp-gold-accent); }

.hp-social-links { display: flex; gap: 12px; margin-top: 16px; }
.hp-social-link {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: var(--hp-light-gray);
	display: flex; align-items: center; justify-content: center;
	color: var(--hp-text);
	transition: background 0.3s var(--hp-ease), color 0.3s var(--hp-ease);
}
.hp-social-link:hover { background: var(--hp-gold-accent); color: #fff; }
.hp-social-link svg { width: 18px; height: 18px; }

.hp-footer-bottom {
	border-top: 1px solid rgba(64,56,46,0.08);
	padding: 20px 24px 32px;
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	color: #8a8072;
	flex-wrap: wrap;
	gap: 8px;
}

/* ---------- Shop / product grid ---------- */

.hp-shop-hero { padding: 72px 0 40px; text-align: center; }
.hp-shop-content { padding-bottom: 96px; }
.hp-product-grid { margin-top: 24px; }

.hp-card--product { padding: 0; overflow: hidden; position: relative; }
.hp-card--product__link { text-decoration: none; color: inherit; display: block; }
.hp-card--product__image { aspect-ratio: 1/1; overflow: hidden; }
.hp-card--product__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--hp-ease); }
.hp-card--product:hover .hp-card--product__image img { transform: scale(1.06); }
.hp-card--product__body { padding: 22px 24px 8px; }
.hp-card--product__excerpt { color: #8a8072; font-size: 0.9rem; }
.hp-card--product__price { font-weight: 600; color: var(--hp-gold-accent); font-size: 1.1rem; }
.hp-card--product__cta { padding: 8px 24px 24px; }
.hp-card--product .add_to_cart_button,
.hp-card--product .button {
	display: inline-flex; width: 100%;
	justify-content: center;
	padding: 12px 24px;
	border-radius: var(--hp-button-radius);
	background: var(--hp-gold-accent);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s var(--hp-ease), transform 0.3s var(--hp-ease);
}
.hp-card--product .add_to_cart_button:hover { background: #b58e26; transform: translateY(-2px); }
.hp-card--bundle { border: 2px solid var(--hp-gold-accent); }

/* ---------- Single product ---------- */

.hp-product-page { padding: 48px 0 80px; }
.hp-product-page__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: flex-start;
}
.hp-product-page__gallery img { border-radius: var(--hp-radius-lg); box-shadow: var(--hp-shadow-med); }
.hp-product-page__summary .price { font-family: var(--hp-font-heading); font-size: 2rem; display: block; margin: 12px 0; color: var(--hp-text); }
.hp-product-page__summary del { color: #a89e8e; }
.hp-product-page__summary ins { text-decoration: none; color: var(--hp-gold-accent); }
.hp-product-page__summary .cart .button,
.hp-product-page__summary button.single_add_to_cart_button {
	background: var(--hp-gold-accent);
	color: #fff;
	border: 0;
	padding: 16px 40px;
	border-radius: var(--hp-button-radius);
	font-weight: 600;
	font-family: var(--hp-font-body);
	cursor: pointer;
	transition: transform 0.3s var(--hp-ease), background 0.3s var(--hp-ease);
}
.hp-product-page__summary button.single_add_to_cart_button:hover { background: #b58e26; transform: translateY(-2px); }
.hp-product-page__features { background: var(--hp-cream); border-radius: var(--hp-radius-md); padding: 28px; margin-top: 32px; }
.hp-product-page__features ul { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 8px; }
.hp-product-page__features li { padding-left: 24px; position: relative; }
.hp-product-page__features li::before { content: '✓'; color: var(--hp-gold-accent); position: absolute; left: 0; }
.hp-product-page__related { margin-top: 80px; }

/* Sticky buy box */
.hp-sticky-buybox {
	position: fixed;
	left: 0; right: 0; bottom: -100px;
	background: var(--hp-white);
	box-shadow: 0 -10px 30px rgba(64,56,46,0.12);
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	z-index: 90;
	transition: bottom 0.4s var(--hp-ease);
}
.hp-sticky-buybox.is-visible { bottom: 0; }
.hp-sticky-buybox__title { display: block; font-weight: 600; }
.hp-sticky-buybox__price { color: var(--hp-gold-accent); font-weight: 600; }

/* ---------- Inline newsletter box (shop / product pages) ---------- */

.hp-inline-newsletter {
	background: var(--hp-cream);
	border-radius: var(--hp-radius-md);
	padding: 32px;
	margin-top: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.hp-inline-newsletter__text h4 { margin: 0 0 4px; }
.hp-inline-newsletter__text p { margin: 0; color: #6d6355; font-size: 0.92rem; }
.hp-inline-newsletter__form { flex: 1; min-width: 260px; max-width: 380px; }

/* ---------- Thank you page ---------- */

.hp-thankyou { text-align: center; padding: 72px 0 96px; max-width: 560px; }
.hp-thankyou__downloads { display: flex; flex-direction: column; gap: 14px; margin: 32px 0; }
.hp-thankyou__order-number { color: #8a8072; font-size: 0.85rem; }

/* ---------- 404 / search / archive ---------- */

.hp-404__inner { text-align: center; padding: 96px 0; max-width: 560px; margin: 0 auto; }
.hp-404__search { margin-top: 24px; }
.hp-search-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.hp-search-form__field { flex: 1; padding: 14px 20px; border-radius: var(--hp-button-radius); border: 1px solid rgba(64,56,46,0.15); }
.hp-archive, .hp-search { padding: 64px 0 96px; }
.hp-no-results { text-align: center; padding: 48px 0; }
.hp-pagination { text-align: center; margin-top: 48px; }
.hp-pagination .page-numbers { display: inline-flex; padding: 10px 16px; margin: 0 4px; border-radius: 50%; text-decoration: none; color: var(--hp-text); }
.hp-pagination .page-numbers.current { background: var(--hp-gold-accent); color: #fff; }

/* ---------- Shop / blog preview CTA row ---------- */

.hp-shop-preview__cta { text-align: center; margin-top: 40px; }

/* ---------- About page ---------- */

.hp-about__hero { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.hp-about__portrait { max-width: 320px; margin: 0 auto 40px; }
.hp-about__body { max-width: 680px; margin: 0 auto; font-size: 1.05rem; color: #6d6355; }
.hp-about__values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

/* ---------- Terms / legal pages ---------- */

.hp-legal { max-width: 760px; margin: 0 auto; }
.hp-legal h2 { margin-top: 2em; font-size: 1.4rem; }
.hp-legal p, .hp-legal li { color: #6d6355; }
.hp-legal__updated { font-size: 0.85rem; color: #a89e8e; margin-bottom: 40px; }

/* ---------- Page / single ---------- */

.hp-page, .hp-single { padding: 64px 0 96px; }
.hp-page__inner, .hp-single__inner { max-width: 760px; margin: 0 auto; }
.hp-page__thumbnail, .hp-single__thumbnail { border-radius: var(--hp-radius-lg); overflow: hidden; margin: 32px 0; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
	.hp-hero__inner,
	.hp-bundle__card,
	.hp-lifestyle__inner,
	.hp-product-page__inner {
		grid-template-columns: 1fr;
	}
	.hp-card-grid--3, .hp-card-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.hp-benefits__grid { grid-template-columns: repeat(2, 1fr); }
	.hp-footer-grid { grid-template-columns: 1fr 1fr; }
	.hp-newsletter-band { transform: none; margin-bottom: 0; flex-direction: column; text-align: center; }
}

@media (max-width: 680px) {
	.hp-nav-menu {
		position: fixed;
		top: 72px; left: 0; right: 0;
		background: var(--hp-white);
		flex-direction: column;
		padding: 24px;
		gap: 20px;
		box-shadow: var(--hp-shadow-med);
		transform: translateY(-12px);
		opacity: 0;
		pointer-events: none;
		transition: all 0.35s var(--hp-ease);
	}
	.hp-nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
	.hp-menu-toggle { display: flex; }
	.hp-card-grid--3, .hp-card-grid--4, .hp-benefits__grid, .hp-footer-grid { grid-template-columns: 1fr; }
	.hp-section { padding: 64px 0; }
	.hp-bundle__card { padding: 32px; }
	.hp-sticky-buybox { padding: 14px 18px; }
}
