/*!
Theme Name: Hoof Miniatures
Theme URI: https://hoofminiatures.com
Author: Hoof Miniatures
Description: Premium miniature cattle and goats — friendly, fast, CWV-optimised theme based on Underscores (_s).
Version: 1.0.0
Text Domain: hoof-miniatures
Tags: ecommerce, woocommerce, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready

  ⚠️  KEEP your original "Theme Name:" value if it differs from your theme folder.
      WordPress matches the theme by FOLDER, but this header must stay at the very top.
*/

/* Google Fonts — must be the FIRST rule in the file */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   GLOBAL — header, footer, buttons, tokens (every page)
   ========================================================================== */
:root {
	--cream: #FFF6E9;
	--paper: #FFFDF8;
	--ink: #33312B;
	--muted: #7d7768;
	--green: #5A9E3F;
	--green-deep: #356B2E;
	--amber: #F7A823;
	--amber-d: #e1920f;
	--coral: #EE6C4D;
	--sky: #A7D8EE;
	--pink: #F6C9B8;

	--r: 28px;
	--r-sm: 16px;
	--sh: 0 14px 34px -18px rgba(80, 55, 10, .35);
	--sh-lg: 0 26px 60px -26px rgba(80, 55, 10, .45);
}

* { box-sizing: border-box; }

html { overflow-x: clip; }

body {
	margin: 0;
	font-family: 'Nunito', system-ui, -apple-system, sans-serif;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

/* Contain the off-canvas mobile menu so it never creates sideways scroll */
.hm-site { overflow-x: clip; }

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

a { color: var(--green-deep); }

h1, h2, h3 { font-family: 'Fredoka', system-ui, sans-serif; font-weight: 600; letter-spacing: -0.01em; }

.hm-wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0;
	margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px; width: auto; height: auto; clip: auto;
	z-index: 1000; background: #fff; color: var(--green-deep); padding: .6rem 1rem;
	border-radius: 8px; font-weight: 800;
}

/* ---- shared button system (used in header, footer, content) ---- */
.hm-btn {
	display: inline-flex; align-items: center; gap: .5rem;
	font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
	min-height: 48px; padding: .9rem 1.7rem; border-radius: 999px;
	text-decoration: none; border: none; cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
@media (prefers-reduced-motion: no-preference) { .hm-btn:hover { transform: translateY(-3px); } }
.hm-btn--green { background: var(--green); color: #fff; box-shadow: 0 14px 26px -12px rgba(90,158,63,.95); }
.hm-btn--green:hover { background: var(--green-deep); }
.hm-btn--amber { background: var(--amber); color: var(--ink); box-shadow: 0 14px 26px -12px rgba(247,168,35,.95); }
.hm-btn--amber:hover { background: var(--amber-d); }
.hm-btn--ghost { background: #fff; color: var(--ink); box-shadow: var(--sh); }

/* ---- brand ---- */
.hm-brand__link { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.hm-brand__logo { width: 42px; height: 42px; border-radius: 14px; background: var(--green); display: grid; place-items: center; color: #fff; transform: rotate(-6deg); box-shadow: var(--sh); flex: none; }
.hm-brand__logo svg { width: 24px; height: 24px; }
.hm-brand__logo--light { background: var(--amber); color: var(--ink); }
.hm-brand__name { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--green-deep); white-space: nowrap; }
.hm-brand__name--light { color: #fff; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.hm-anno { background: var(--green-deep); color: #fff; font-size: .85rem; font-weight: 800; }
.hm-anno__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .4rem 1rem; padding: .55rem 0; text-align: center; }
.hm-anno__item { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.hm-anno__item svg { width: 16px; height: 16px; color: var(--amber); flex: none; }
.hm-anno__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }
@media (max-width: 560px) { .hm-anno__dot { display: none; } .hm-anno__row { gap: .2rem .8rem; } }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.hm-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 246, 233, .92); backdrop-filter: saturate(140%) blur(8px); border-bottom: 2px solid #fff; }
.hm-header__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; }

.hm-nav { display: flex; align-items: center; gap: 1.6rem; }
.hm-nav__list { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.hm-nav__list a { font-weight: 800; font-size: .95rem; color: var(--ink); text-decoration: none; transition: color .18s ease; white-space: nowrap; }
.hm-nav__list a:hover, .hm-nav__list .current-menu-item > a { color: var(--green); }
.hm-nav__cta { background: var(--amber); color: var(--ink); font-weight: 800; font-size: .92rem; padding: .65rem 1.25rem; border-radius: 999px; text-decoration: none; box-shadow: 0 10px 20px -10px rgba(247,168,35,.95); transition: transform .18s ease, background-color .18s ease; white-space: nowrap; }
.hm-nav__cta:hover { background: var(--amber-d); transform: translateY(-2px); }

/* CSS-only mobile menu */
.hm-menu-toggle { display: none; }
.hm-burger { display: none; width: 46px; height: 46px; border-radius: 12px; background: #fff; box-shadow: var(--sh); cursor: pointer; place-items: center; gap: 5px; flex-direction: column; }
.hm-burger span { display: block; width: 22px; height: 2.5px; border-radius: 2px; background: var(--green-deep); transition: transform .25s ease, opacity .2s ease; }

@media (max-width: 980px) {
	.hm-header__bar { flex-wrap: wrap; }
	.hm-burger { display: inline-grid; }
	.hm-nav {
		display: none;
		flex-basis: 100%;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: .25rem 0 .75rem;
	}
	.hm-nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.hm-nav__list li { border-bottom: 1px solid rgba(53,107,46,.12); }
	.hm-nav__list a { display: block; padding: .95rem .25rem; font-size: 1.05rem; }
	.hm-nav__cta { margin-top: .85rem; text-align: center; padding: .85rem 1.25rem; }
	.hm-menu-toggle:checked ~ .hm-nav { display: flex; }
	.hm-menu-toggle:checked ~ .hm-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
	.hm-menu-toggle:checked ~ .hm-burger span:nth-child(2) { opacity: 0; }
	.hm-menu-toggle:checked ~ .hm-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.hm-footer { background: var(--green-deep); color: rgba(255,255,255,.82); }
.hm-footer__top { display: grid; grid-template-columns: 1fr; gap: 2.2rem; padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem); }
.hm-footer__brand { max-width: 360px; }
.hm-footer__tag { font-weight: 600; margin: 1rem 0 1.2rem; color: rgba(255,255,255,.78); }
.hm-footer__social { display: flex; gap: .6rem; }
.hm-footer__social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #fff; transition: background-color .2s ease, transform .2s ease; }
.hm-footer__social a:hover { background: var(--amber); color: var(--ink); transform: translateY(-3px); }
.hm-footer__social svg { width: 20px; height: 20px; }

.hm-footer__h { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; color: #fff; margin: 0 0 1rem; }
.hm-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.hm-footer__col a { color: rgba(255,255,255,.8); text-decoration: none; font-weight: 600; transition: color .18s ease; }
.hm-footer__col a:hover { color: var(--amber); }
.hm-footer__contact li { color: rgba(255,255,255,.8); font-weight: 600; }
.hm-footer__cta { margin-top: 1.3rem; color: var(--ink); }

.hm-footer__bottom { border-top: 1px solid rgba(255,255,255,.14); }
.hm-footer__bottom-row { display: flex; flex-direction: column; gap: .8rem; align-items: center; padding: 1.4rem 0; text-align: center; }
.hm-footer__copy { margin: 0; font-size: .88rem; font-weight: 600; }
.hm-footer__legal { display: flex; gap: 1.2rem; list-style: none; margin: 0; padding: 0; }
.hm-footer__legal a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .85rem; font-weight: 700; }
.hm-footer__legal a:hover { color: var(--amber); }

@media (min-width: 720px) {
	.hm-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; }
	.hm-footer__bottom-row { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ==========================================================================
   HOMEPAGE — section styles (front page)
   ========================================================================== */
:root {
	--cream: #FFF6E9;
	--paper: #FFFDF8;
	--ink: #33312B;
	--muted: #7d7768;
	--green: #5A9E3F;
	--green-deep: #356B2E;
	--amber: #F7A823;
	--amber-d: #e1920f;
	--coral: #EE6C4D;
	--sky: #A7D8EE;
	--pink: #F6C9B8;

	--r: 28px;
	--r-sm: 16px;
	--sh: 0 14px 34px -18px rgba(80, 55, 10, .35);
	--sh-lg: 0 26px 60px -26px rgba(80, 55, 10, .45);
}

* { box-sizing: border-box; }

.hm-main {
	margin: 0;
	font-family: 'Nunito', system-ui, -apple-system, sans-serif;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

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

.hm-main h1, .hm-main h2, .hm-main h3 {
	font-family: 'Fredoka', system-ui, sans-serif;
	font-weight: 600;
	margin: 0;
	letter-spacing: -0.01em;
}

.hm-wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.hm-center { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* performance: defer offscreen sections */
.hm-spot, .hm-values, .hm-steps, .hm-incl, .hm-story, .hm-growth,
.hm-videos, .hm-revs, .hm-aus, .hm-faq, .hm-blog, .hm-gal, .hm-news, .hm-cta {
	content-visibility: auto;
	contain-intrinsic-size: 0 640px;
}

.hm-sr {
	position: absolute !important; width: 1px; height: 1px; padding: 0;
	margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

/* ---- shared bits ---- */
.hm-pill {
	display: inline-flex; align-items: center; gap: .5rem;
	background: #fff; border: 2px solid var(--pink); color: var(--green-deep);
	font-weight: 800; font-size: .76rem; letter-spacing: .04em; text-transform: uppercase;
	padding: .45rem .9rem; border-radius: 999px; box-shadow: var(--sh);
}
.hm-pill--light { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); color: #fff; }
.hm-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); flex: none; }
.hm-pill--light .hm-pill__dot { background: var(--amber); }

.hm-head { text-align: center; max-width: 660px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.hm-head__title { font-size: clamp(2rem, 4.8vw, 3.1rem); line-height: 1.06; color: var(--green-deep); margin-top: 1rem; text-wrap: balance; }
.hm-head__title--light { color: #fff; }
.hm-head__sub { color: var(--muted); font-weight: 600; font-size: 1.12rem; margin: .8rem 0 0; text-wrap: pretty; }
.hm-head__sub--light { color: rgba(255,255,255,.82); }

.hm-btn {
	display: inline-flex; align-items: center; gap: .5rem;
	font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
	min-height: 48px; padding: .9rem 1.7rem; border-radius: 999px;
	text-decoration: none; border: none; cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
@media (prefers-reduced-motion: no-preference) { .hm-btn:hover { transform: translateY(-3px); } }
.hm-btn--green { background: var(--green); color: #fff; box-shadow: 0 14px 26px -12px rgba(90,158,63,.95); }
.hm-btn--green:hover { background: var(--green-deep); }
.hm-btn--amber { background: var(--amber); color: var(--ink); box-shadow: 0 14px 26px -12px rgba(247,168,35,.95); }
.hm-btn--amber:hover { background: var(--amber-d); }
.hm-btn--ghost { background: #fff; color: var(--ink); box-shadow: var(--sh); }

.hm-price { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.2rem; color: var(--coral); }
.hm-mini-btn {
	background: var(--green); color: #fff; font-weight: 800; font-size: .85rem;
	padding: .6rem 1.05rem; border-radius: 999px; text-decoration: none; white-space: nowrap;
	transition: background-color .18s ease;
}
.hm-mini-btn:hover { background: var(--green-deep); }
.hm-chip { background: var(--cream); border: 1.5px solid var(--pink); color: var(--ink); font-weight: 700; font-size: .74rem; padding: .25rem .7rem; border-radius: 999px; }

/* ---- HERO ---- */
.hm-hero { position: relative; padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hm-hero__blob { position: absolute; border-radius: 50%; z-index: 0; filter: blur(6px); }
.hm-hero__blob--1 { width: 440px; height: 440px; background: var(--pink); top: -140px; right: -100px; opacity: .6; }
.hm-hero__blob--2 { width: 340px; height: 340px; background: var(--sky); bottom: -140px; left: -110px; opacity: .4; }
.hm-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3rem); align-items: center; }
.hm-hero__title { font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: 1.02; font-weight: 700; margin: 1.2rem 0; color: var(--ink); }
.hm-hero__draw { position: relative; display: inline-block; color: var(--green-deep); white-space: nowrap; }
.hm-hero__draw svg { position: absolute; left: 0; bottom: -.08em; width: 100%; height: .26em; color: var(--amber); overflow: visible; }
.hm-hero__title em { font-style: normal; color: var(--coral); }
.hm-hero__sub { font-size: 1.18rem; color: var(--muted); font-weight: 600; max-width: 32ch; margin: 0 0 1.8rem; }
.hm-hero__btns { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }

.hm-hero__media { position: relative; }
.hm-hero__photo { border-radius: 36px; overflow: hidden; border: 6px solid #fff; box-shadow: var(--sh-lg); aspect-ratio: 1/1; transform: rotate(-2deg); }
.hm-hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.hm-sticker { position: absolute; z-index: 2; background: #fff; border-radius: 18px; padding: .7rem .95rem; box-shadow: var(--sh-lg); display: flex; align-items: center; gap: .6rem; font-weight: 800; }
.hm-sticker small { display: block; font-weight: 700; color: var(--muted); font-size: .72rem; }
.hm-sticker b { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.hm-sticker__ic { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex: none; }
.hm-sticker__ic svg { width: 20px; height: 20px; }
.hm-sticker__ic--coral { background: var(--coral); }
.hm-sticker__ic--green { background: var(--green); }
.hm-sticker__ic--amber { background: var(--amber); }
.hm-sticker--1 { top: 16px; left: -12px; transform: rotate(-5deg); }
.hm-sticker--2 { bottom: 28px; right: -14px; transform: rotate(4deg); }
.hm-sticker--3 { bottom: -18px; left: 28px; transform: rotate(-3deg); }

.hm-wave { display: block; width: 100%; height: 60px; color: var(--paper); margin-bottom: -1px; }

@media (min-width: 900px) {
	.hm-hero__grid { grid-template-columns: 1.05fr .95fr; }
}
@media (max-width: 540px) {
	.hm-sticker { padding: .55rem .7rem; }
	.hm-sticker b { font-size: .9rem; }
	.hm-sticker--1 { left: 0; }
	.hm-sticker--2 { right: 0; }
}

/* ---- TRUST ---- */
.hm-trust { background: var(--paper); padding: 1.4rem 0; }
.hm-trust__row { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; align-items: center; justify-content: center; }
.hm-trust__item { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; font-size: .92rem; color: var(--green-deep); }
.hm-trust__item svg { width: 22px; height: 22px; color: var(--green); flex: none; }

/* ---- BREEDS ---- */
.hm-breeds { background: var(--paper); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-breeds__grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.hm-bcard { position: relative; border-radius: var(--r); overflow: hidden; background: var(--cream); border: 2px solid #fff; box-shadow: var(--sh); transition: transform .2s ease, box-shadow .2s ease; }
@media (prefers-reduced-motion: no-preference) { .hm-bcard:hover { transform: translateY(-6px); } .hm-bcard:hover .hm-bcard__img img { transform: scale(1.06); } }
.hm-bcard:hover { box-shadow: var(--sh-lg); }
.hm-bcard__img { aspect-ratio: 16/11; overflow: hidden; }
.hm-bcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hm-bcard__tag { position: absolute; top: 14px; left: 14px; z-index: 1; background: #fff; color: var(--green-deep); font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; padding: .4rem .85rem; border-radius: 999px; box-shadow: var(--sh); }
.hm-bcard__body { padding: 1.4rem 1.5rem 1.6rem; }
.hm-bcard__body h3 { font-size: 1.55rem; color: var(--green-deep); }
.hm-bcard__body p { color: var(--muted); font-weight: 600; margin: .5rem 0 1.1rem; }
.hm-bcard__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* ---- PRODUCTS ---- */
.hm-prods { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-pgrid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.hm-pcard { background: var(--paper); border: 2px solid #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
@media (prefers-reduced-motion: no-preference) { .hm-pcard:hover { transform: translateY(-6px); } .hm-pcard:hover .hm-pcard__img img { transform: scale(1.06); } }
.hm-pcard:hover { box-shadow: var(--sh-lg); }
.hm-pcard__img { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.hm-pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hm-pcard__badge { position: absolute; top: 12px; left: 12px; background: var(--coral); color: #fff; font-weight: 800; font-size: .7rem; text-transform: uppercase; letter-spacing: .04em; padding: .35rem .8rem; border-radius: 999px; transform: rotate(-4deg); }
.hm-pcard__heart { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; background: #fff; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--sh); color: var(--coral); }
.hm-pcard__heart svg { width: 18px; height: 18px; }
.hm-pcard__body { padding: 1.1rem 1.25rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.hm-pcard__body h3 { font-size: 1.35rem; color: var(--green-deep); }
.hm-pcard__meta { display: flex; gap: .5rem; flex-wrap: wrap; margin: .6rem 0 .9rem; }
.hm-pcard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: .8rem; }
.hm-pcard__foot .hm-price { font-size: 1.3rem; }
.hm-pcard__foot .hm-price del { color: var(--muted); font-weight: 400; font-size: .9rem; margin-right: .3rem; }

/* ---- SPOTLIGHTS ---- */
.hm-spot { background: var(--paper); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-spot__grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.hm-spot__card { position: relative; border-radius: var(--r); padding: 1.6rem 1.4rem; border: 2px solid #fff; box-shadow: var(--sh); transition: transform .2s ease; }
@media (prefers-reduced-motion: no-preference) { .hm-spot__card:hover { transform: translateY(-5px); } }
.hm-spot__card--green { background: #e9f3e2; }
.hm-spot__card--coral { background: #fbe4dc; }
.hm-spot__card--amber { background: #fdeecb; }
.hm-spot__card--sky { background: #e0f1f9; }
.hm-spot__emoji { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: #fff; box-shadow: var(--sh); margin-bottom: 1rem; transform: rotate(-6deg); }
.hm-spot__card--green .hm-spot__emoji { color: var(--green); }
.hm-spot__card--coral .hm-spot__emoji { color: var(--coral); }
.hm-spot__card--amber .hm-spot__emoji { color: var(--amber-d); }
.hm-spot__card--sky .hm-spot__emoji { color: #2f93c4; }
.hm-spot__emoji svg { width: 24px; height: 24px; }
.hm-spot__tag { display: inline-block; font-weight: 800; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); opacity: .55; margin-bottom: .35rem; }
.hm-spot__card h3 { font-size: 1.35rem; color: var(--green-deep); }
.hm-spot__card p { color: var(--ink); opacity: .8; font-weight: 600; font-size: .92rem; margin: .4rem 0 0; }

/* ---- VALUES ---- */
.hm-values { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-values__grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.hm-value { background: var(--paper); border: 2px solid #fff; border-radius: var(--r); padding: 1.6rem 1.5rem; box-shadow: var(--sh); transition: transform .2s ease; }
@media (prefers-reduced-motion: no-preference) { .hm-value:hover { transform: translateY(-5px); } }
.hm-value__ic { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 1rem; transform: rotate(-6deg); }
.hm-value__ic svg { width: 24px; height: 24px; }
.hm-value__ic--coral { background: var(--coral); }
.hm-value__ic--green { background: var(--green); }
.hm-value__ic--amber { background: var(--amber); }
.hm-value__ic--sky { background: #5cb6dd; }
.hm-value h3 { font-size: 1.25rem; color: var(--green-deep); }
.hm-value p { color: var(--muted); font-weight: 600; font-size: .94rem; margin: .45rem 0 0; }

/* ---- STEPS ---- */
.hm-steps { background: var(--green-deep); padding: clamp(2.8rem, 5vw, 4.2rem) 0; position: relative; overflow: hidden; }
.hm-steps::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% -10%, rgba(255,255,255,.12), transparent 60%); pointer-events: none; }
.hm-steps__grid { position: relative; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.hm-scard { background: rgba(255,255,255,.07); border: 2px solid rgba(255,255,255,.14); border-radius: var(--r); padding: 1.7rem 1.4rem; transition: background-color .2s ease, border-color .2s ease; }
.hm-scard:hover { background: rgba(255,255,255,.11); border-color: rgba(247,168,35,.5); }
.hm-snum { width: 46px; height: 46px; border-radius: 14px; background: var(--amber); color: var(--ink); font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.3rem; display: grid; place-items: center; transform: rotate(-6deg); margin-bottom: 1rem; }
.hm-scard h3 { font-size: 1.3rem; color: #fff; }
.hm-scard p { color: rgba(255,255,255,.82); font-weight: 600; font-size: .92rem; margin: .4rem 0 0; }

/* ---- WHAT'S INCLUDED ---- */
.hm-incl { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-incl__inner { display: flex; flex-direction: column; gap: clamp(1.75rem, 4vw, 3rem); }
.hm-incl__figure { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-lg); border: 6px solid #fff; aspect-ratio: 16/12; }
.hm-incl__figure img { width: 100%; height: 100%; object-fit: cover; }
.hm-incl__text .hm-head__title { text-align: left; margin-top: 1rem; }
.hm-checklist { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; display: grid; gap: .8rem; }
.hm-checklist li { position: relative; padding-left: 2.2rem; font-weight: 700; color: var(--ink); }
.hm-checklist li::before { content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--green); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 14px; background-repeat: no-repeat; background-position: center; }

/* ---- STORY ---- */
.hm-story { background: var(--paper); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-story__inner { display: flex; flex-direction: column; gap: clamp(1.75rem, 4vw, 3rem); }
.hm-story__text .hm-head__title { text-align: left; margin-top: 1rem; }
.hm-story__text p { color: var(--muted); font-weight: 600; margin: 1rem 0 0; text-wrap: pretty; }
.hm-story__text .hm-btn { margin-top: 1.6rem; }
.hm-story__figure { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-lg); border: 6px solid #fff; aspect-ratio: 16/13; }
.hm-story__figure img { width: 100%; height: 100%; object-fit: cover; }

/* ---- GROWTH ---- */
.hm-growth { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-growth__card { width: min(920px, 100%); margin-inline: auto; background: var(--paper); border: 2px solid #fff; border-radius: var(--r); box-shadow: var(--sh); overflow: hidden; }
.hm-growth__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.hm-growth__table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hm-growth__table thead th { background: var(--green-deep); color: #fff; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; text-align: left; padding: 1rem 1.25rem; white-space: nowrap; }
.hm-growth__table tbody th, .hm-growth__table tbody td { padding: .8rem 1.25rem; text-align: left; border-top: 1px solid rgba(53,107,46,.1); color: var(--muted); font-weight: 600; white-space: nowrap; }
.hm-growth__table tbody th { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1rem; color: var(--green-deep); }
.hm-growth__table tbody tr:nth-child(even) th, .hm-growth__table tbody tr:nth-child(even) td { background: var(--cream); }
.hm-growth__note { color: var(--coral) !important; font-weight: 800 !important; }
.hm-growth__dash { color: rgba(125,119,104,.4); }
.hm-growth__foot { margin: 0; padding: 1rem 1.4rem; font-size: .82rem; color: var(--muted); background: var(--cream); border-top: 1px solid rgba(53,107,46,.1); text-wrap: pretty; }

/* ---- VIDEOS ---- */
.hm-videos { background: var(--paper); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-videos__grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.hm-video { background: var(--cream); border: 2px solid #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); }
.hm-video__details { margin: 0; }
.hm-video__summary { position: relative; display: block; cursor: pointer; aspect-ratio: 16/9; list-style: none; overflow: hidden; }
.hm-video__summary::-webkit-details-marker { display: none; }
.hm-video__poster { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hm-video__summary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(51,49,43,.05), rgba(51,49,43,.4)); }
.hm-video__play { position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; padding: 14px; display: grid; place-items: center; color: var(--green-deep); background: #fff; border-radius: 50%; box-shadow: var(--sh-lg); transition: transform .2s ease, background-color .2s ease, color .2s ease; }
.hm-video__play svg { width: 100%; height: 100%; margin-left: 3px; }
@media (prefers-reduced-motion: no-preference) { .hm-video__summary:hover .hm-video__poster { transform: scale(1.05); } .hm-video__summary:hover .hm-video__play { transform: translate(-50%,-50%) scale(1.08); } }
.hm-video__summary:hover .hm-video__play { background: var(--amber); color: var(--ink); }
.hm-video__details[open] .hm-video__summary { aspect-ratio: auto; height: 0; min-height: 0; }
.hm-video__details[open] .hm-video__summary > * { display: none; }
.hm-video__frame { position: relative; aspect-ratio: 16/9; background: #000; }
.hm-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hm-video__body { padding: 1.1rem 1.3rem 1.4rem; }
.hm-video__body h3 { font-size: 1.2rem; color: var(--green-deep); }
.hm-video__body p { color: var(--muted); font-weight: 600; font-size: .9rem; margin: .35rem 0 0; }

/* ---- REVIEWS ---- */
.hm-revs { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-revs__grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.hm-rev { position: relative; margin: 0; background: var(--paper); border: 2px solid #fff; border-radius: var(--r); box-shadow: var(--sh); padding: 1.7rem 1.6rem; display: flex; flex-direction: column; }
.hm-rev__stars { display: inline-flex; color: var(--amber); margin-bottom: 1rem; }
.hm-rev__body { font-weight: 600; font-size: 1.02rem; color: var(--ink); margin: 0 0 1.3rem; text-wrap: pretty; }
.hm-rev__foot { display: flex; flex-direction: column; margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(53,107,46,.1); }
.hm-rev__cite { font-style: normal; font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--green-deep); }
.hm-rev__loc { font-size: .8rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--coral); margin-top: .1rem; }

/* ---- AUSTRALIA ---- */
.hm-aus { background: var(--green); padding: clamp(2.8rem, 5vw, 4.2rem) 0; position: relative; overflow: hidden; }
.hm-aus::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 85% 50%, rgba(53,107,46,.45), transparent 60%); pointer-events: none; }
.hm-aus__inner { position: relative; display: flex; flex-direction: column; gap: clamp(1.75rem, 4vw, 3rem); }
.hm-aus__text { color: #fff; }
.hm-aus__text .hm-head__title { text-align: left; margin-top: 1rem; }
.hm-aus__text p { color: rgba(255,255,255,.92); font-weight: 600; margin: 1rem 0 0; text-wrap: pretty; }
.hm-aus__text .hm-btn { margin-top: 1.6rem; }
.hm-aus__figure { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-lg); border: 6px solid #fff; aspect-ratio: 6/5; }
.hm-aus__figure img { width: 100%; height: 100%; object-fit: cover; }

/* ---- FAQ ---- */
.hm-faq { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-faq__list { width: min(820px, 100%); margin-inline: auto; display: flex; flex-direction: column; gap: .85rem; }
.hm-faq__item { background: var(--paper); border: 2px solid #fff; border-radius: var(--r-sm); padding: 0 1.4rem; box-shadow: var(--sh); transition: border-color .2s ease; }
.hm-faq__item[open] { border-color: var(--pink); }
.hm-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none; padding: 1.2rem 0; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--green-deep); }
.hm-faq__q::-webkit-details-marker { display: none; }
.hm-faq__chev { flex: none; width: 20px; height: 20px; color: var(--coral); transition: transform .2s ease; }
.hm-faq__item[open] .hm-faq__chev { transform: rotate(180deg); }
.hm-faq__a { margin: 0; padding: 0 0 1.3rem; color: var(--muted); font-weight: 600; text-wrap: pretty; }

/* ---- BLOG ---- */
.hm-blog { background: var(--paper); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-blog__grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.hm-post { background: var(--cream); border: 2px solid #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
@media (prefers-reduced-motion: no-preference) { .hm-post:hover { transform: translateY(-5px); } .hm-post:hover .hm-post__img img { transform: scale(1.05); } }
.hm-post:hover { box-shadow: var(--sh-lg); }
.hm-post__img { display: block; aspect-ratio: 3/2; overflow: hidden; }
.hm-post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hm-post__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.hm-post__date { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--coral); margin-bottom: .5rem; }
.hm-post__body h3 { font-size: 1.25rem; line-height: 1.25; margin: 0 0 .5rem; }
.hm-post__body h3 a { color: var(--green-deep); text-decoration: none; }
.hm-post__body h3 a:hover { color: var(--coral); }
.hm-post__body p { color: var(--muted); font-weight: 600; font-size: .92rem; margin: 0 0 1rem; }
.hm-post__link { margin-top: auto; font-weight: 800; font-size: .88rem; color: var(--coral); text-decoration: none; }

/* ---- GALLERY ---- */
.hm-gal { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-gal__handle { color: var(--coral); font-weight: 800; text-decoration: none; margin-left: .35rem; }
.hm-gal__handle:hover { text-decoration: underline; }
.hm-gal__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
.hm-gal__item { margin: 0; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--r-sm); border: 3px solid #fff; box-shadow: var(--sh); }
.hm-gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
@media (prefers-reduced-motion: no-preference) { .hm-gal__item:hover img { transform: scale(1.08); } }

/* ---- NEWSLETTER ---- */
.hm-news { background: var(--coral); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hm-news__inner { display: flex; flex-direction: column; gap: 1.6rem; align-items: flex-start; }
.hm-news__text .hm-head__title { text-align: left; margin-top: 0; }
.hm-news__text p { color: rgba(255,255,255,.92); font-weight: 700; margin: .5rem 0 0; max-width: 46ch; }
.hm-news__form { display: flex; flex-wrap: wrap; gap: .75rem; width: 100%; max-width: 520px; }
.hm-news__input { flex: 1 1 220px; min-height: 50px; padding: .75rem 1.2rem; font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ink); background: #fff; border: 2px solid transparent; border-radius: 999px; }
.hm-news__input::placeholder { color: #b0a999; }

/* ---- CTA ---- */
.hm-cta { position: relative; background: var(--green-deep); padding: clamp(3rem, 6vw, 5rem) 0; overflow: hidden; text-align: center; }
.hm-cta__blob { position: absolute; border-radius: 50%; filter: blur(8px); }
.hm-cta__blob--1 { width: 320px; height: 320px; background: rgba(247,168,35,.3); top: -120px; left: -80px; }
.hm-cta__blob--2 { width: 300px; height: 300px; background: rgba(238,108,77,.3); bottom: -120px; right: -80px; }
.hm-cta__inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }
.hm-cta__title { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.08; color: #fff; text-wrap: balance; }
.hm-cta__text { color: rgba(255,255,255,.88); font-weight: 600; font-size: 1.1rem; margin: .9rem auto 1.8rem; max-width: 48ch; text-wrap: pretty; }
.hm-cta__btns { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */
@media (min-width: 560px) {
	.hm-pgrid { grid-template-columns: 1fr 1fr; }
	.hm-spot__grid { grid-template-columns: 1fr 1fr; }
	.hm-values__grid { grid-template-columns: 1fr 1fr; }
	.hm-steps__grid { grid-template-columns: 1fr 1fr; }
	.hm-news__inner { flex-direction: row; align-items: center; justify-content: space-between; }
	.hm-news__form { width: auto; }
}

@media (min-width: 760px) {
	.hm-breeds__grid { grid-template-columns: 1fr 1fr; }
	.hm-videos__grid { grid-template-columns: repeat(3, 1fr); }
	.hm-revs__grid { grid-template-columns: repeat(3, 1fr); }
	.hm-blog__grid { grid-template-columns: repeat(3, 1fr); }
	.hm-gal__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 980px) {
	.hm-pgrid { grid-template-columns: repeat(3, 1fr); }
	.hm-spot__grid { grid-template-columns: repeat(4, 1fr); }
	.hm-values__grid { grid-template-columns: repeat(4, 1fr); }
	.hm-steps__grid { grid-template-columns: repeat(4, 1fr); }
	.hm-incl__inner { flex-direction: row; align-items: center; }
	.hm-incl__figure { flex: 0 1 45%; }
	.hm-incl__text { flex: 0 1 55%; }
	.hm-story__inner { flex-direction: row; align-items: center; }
	.hm-story__text { flex: 0 1 55%; }
	.hm-story__figure { flex: 0 1 45%; }
	.hm-aus__inner { flex-direction: row; align-items: center; }
	.hm-aus__text { flex: 0 1 55%; }
	.hm-aus__figure { flex: 0 1 45%; }
	.hm-gal__grid { grid-template-columns: repeat(6, 1fr); }
}
