/* =============================================================
   SARA FOODS UK — Theme Stylesheet
   Palette + type derived from the brand badge logo:
   navy ring, cream centre, orange snowflake + wordmark.
   Signature element: the "frost corner" snowflake motif,
   echoed in the hero, card corners and section dividers.
   ============================================================= */

:root {
	--navy: #0e355c;
	--navy-dark: #092740;
	--navy-soft: #164b7d;
	--cream: #fdf3d9;
	--cream-deep: #f6e6bd;
	--orange: #e8541e;
	--orange-dark: #c8410f;
	--white: #ffffff;
	--ink: #23282b;
	--muted: #6f6656;
	--border: #e8dcc0;
	--radius-lg: 22px;
	--radius-md: 14px;
	--radius-sm: 8px;
	--shadow: 0 14px 34px -12px rgba(14, 53, 92, 0.25);
	--container: 1200px;
	--font-display: 'Baloo 2', 'Segoe UI', sans-serif;
	--font-body: 'Work Sans', 'Segoe UI', sans-serif;
}

/* ---------- Reset-lite ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.screen-reader-text { position: absolute !important; left: -9999px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
	outline: 3px solid var(--orange);
	outline-offset: 2px;
}
.skip-link { position: absolute; top: -999px; left: 0; background: var(--navy); color: var(--white); padding: 10px 18px; z-index: 9999; }
.skip-link:focus { top: 0; }

.sfu-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 16px;
	padding: 13px 26px;
	border-radius: 999px;
	border: 2px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 20px -8px rgba(200,65,15,0.5); }
.btn--ghost { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.15); }
.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--small { padding: 9px 18px; font-size: 14px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-dark); color: var(--cream); font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; gap: 16px; flex-wrap: wrap; }
.topbar__contact { display: flex; gap: 22px; }
.topbar__contact a { color: var(--cream); display: inline-flex; align-items: center; gap: 6px; }
.topbar__contact .sfu-icon { width: 15px; height: 15px; }
.topbar__socials { display: flex; gap: 10px; }
.topbar__socials a { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(253,243,217,0.4); display: flex; align-items: center; justify-content: center; color: var(--cream); font-size: 12px; text-transform: uppercase; }

/* ---------- Header ---------- */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 500; box-shadow: 0 1px 0 rgba(14,53,92,0.08); }
.header__inner { display: flex; align-items: center; gap: 20px; padding: 14px 24px; }
.site-branding { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.site-branding img, .custom-logo { border-radius: 50%; }
.site-branding__text { display: flex; flex-direction: column; }
.site-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: 0.02em; }
.site-tagline { font-size: 12px; color: var(--orange); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

.primary-navigation { display: flex; }
.primary-menu { display: flex; gap: 6px; align-items: center; }
.primary-menu > li { position: relative; }
.primary-menu > li > a { display: flex; align-items: center; gap: 6px; padding: 10px 14px; font-family: var(--font-display); font-weight: 600; color: var(--navy); border-radius: 999px; }
.primary-menu > li > a:hover, .primary-menu > li.current-menu-item > a { background: var(--cream); color: var(--orange-dark); }
.menu-caret { width: 14px; height: 14px; transition: transform 0.2s ease; }
.primary-menu li.menu-item-has-children:hover > a .menu-caret { transform: rotate(180deg); }

.sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 260px;
	background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow);
	padding: 10px; display: grid; opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
	border: 1px solid var(--border);
	z-index: 50;
}
.menu-item-has-children:hover > .sub-menu, .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a { display: block; padding: 9px 14px; border-radius: var(--radius-sm); color: var(--ink); font-family: var(--font-body); font-weight: 500; font-size: 14.5px; }
.sub-menu li a:hover { background: var(--cream); color: var(--orange-dark); }

.header__actions { display: flex; align-items: center; gap: 10px; }
.icon-btn { background: none; border: none; color: var(--navy); width: 40px; height: 40px; border-radius: 50%; display: none; align-items: center; justify-content: center; }
.icon-btn:hover { background: var(--cream); }
.search-toggle { display: flex; }
.menu-toggle { display: none; }
.header-search { border-top: 1px solid var(--border); padding: 16px 0; display: none; background: var(--cream); }
.header-search.is-open { display: block; }
.search-form { display: flex; max-width: 480px; margin: 0 auto; border: 2px solid var(--navy); border-radius: 999px; overflow: hidden; }
.search-form input { flex: 1; border: none; padding: 10px 18px; font-size: 15px; background: var(--white); }
.search-form button { background: var(--navy); color: var(--white); border: none; padding: 0 18px; }

.breadcrumb-bar { background: #f2f2f2; font-size: 14px; }
.breadcrumb-bar .container { padding: 12px 24px; }
.breadcrumb-bar a { color: var(--navy-soft); font-weight: 500; }
.breadcrumb-bar .current { color: var(--muted); }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); overflow: hidden; }
.hero__frost { position: absolute; top: -60px; right: -60px; width: 420px; height: 420px; color: rgba(232,84,30,0.18); animation: sfu-spin 60s linear infinite; }
.hero__frost svg { width: 100%; height: 100%; }
@keyframes sfu-spin { to { transform: rotate(360deg); } }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; padding: 76px 24px 96px; }
.hero__eyebrow { font-family: var(--font-display); color: var(--orange); letter-spacing: 0.18em; font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.hero__title { font-size: clamp(32px, 4.2vw, 54px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.hero__subtitle { font-size: 18px; color: var(--cream); max-width: 480px; margin-bottom: 28px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__media { position: relative; display: flex; justify-content: center; }
.hero__media-frame { width: min(380px, 100%); aspect-ratio: 1; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 40px; box-shadow: var(--shadow); border: 8px solid var(--orange); }
.hero__media-frame img { width: 100%; height: 100%; object-fit: contain; }
.hero__logo-placeholder { filter: none; }
.hero__badge {
	position: absolute; bottom: -6px; left: -6px; background: var(--orange); color: var(--white);
	font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.05em; text-align: center;
	width: 92px; height: 92px; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1.25;
	box-shadow: var(--shadow); border: 3px solid var(--white);
}

/* ---------- USP bar ---------- */
.usp-bar { background: var(--cream); border-bottom: 1px solid var(--border); }
.usp-bar__inner { display: flex; justify-content: space-between; gap: 18px; padding: 20px 24px; flex-wrap: wrap; }
.usp-bar__item { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 14.5px; flex: 1 1 180px; }
.usp-bar__item .sfu-icon { color: var(--orange); width: 26px; height: 26px; }

/* ---------- Sections (generic) ---------- */
.section { padding: 72px 0; }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.section__eyebrow { font-family: var(--font-display); color: var(--orange); font-weight: 700; letter-spacing: 0.14em; font-size: 13px; text-transform: uppercase; margin-bottom: 6px; }
.section__eyebrow--light { color: var(--orange); }
.section__title { font-size: clamp(26px, 3vw, 38px); }
.section__intro { max-width: 620px; color: var(--muted); }

/* ---------- Product cards ---------- */
.product-card {
	background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
	overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; position: relative; height: 100%;
	display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card__media { position: relative; display: block; aspect-ratio: 1; background: var(--cream); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--orange); opacity: 0.55; }
.product-card__placeholder .sfu-icon { width: 64px; height: 64px; }
.product-card__pieces {
	position: absolute; bottom: 10px; right: 10px; background: var(--orange); color: var(--white);
	font-family: var(--font-display); font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 999px;
}
/* frost-corner signature nick */
.product-card__media::after {
	content: ""; position: absolute; top: 0; left: 0; width: 26px; height: 26px; background: var(--white);
	clip-path: polygon(0 0, 100% 0, 0 100%);
}
.product-card__body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-card__title { font-size: 17px; margin-bottom: 4px; }
.product-card__title a { color: var(--navy); }
.product-card__weight { color: var(--muted); font-size: 13.5px; margin-bottom: 10px; }
.product-card__badges { display: flex; gap: 8px; margin-top: auto; }
.product-card__badges li { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--orange-dark); }
.product-card__badges .sfu-icon { width: 14px; height: 14px; }

/* ---------- Carousel ---------- */
.featured-products { background: var(--white); }
.carousel { position: relative; }
.carousel__track { display: flex; gap: 22px; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 10px; scrollbar-width: none; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide { flex: 0 0 260px; }
.carousel__arrow {
	position: absolute; top: 40%; transform: translateY(-50%); background: var(--white); border: 2px solid var(--navy);
	color: var(--navy); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow); z-index: 5;
}
.carousel__arrow:hover { background: var(--navy); color: var(--white); }
.carousel__arrow--prev { left: -14px; }
.carousel__arrow--next { right: -14px; }

.empty-state { text-align: center; padding: 48px 20px; color: var(--muted); background: var(--cream); border-radius: var(--radius-lg); }
.empty-state__icon { width: 46px; height: 46px; color: var(--orange); margin-bottom: 12px; }

/* ---------- Category showcase blocks ---------- */
.category-showcase { background: var(--cream); }
.category-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 44px 0; border-bottom: 1px solid var(--border); }
.category-block:last-of-type { border-bottom: none; }
.category-block--reverse .category-block__media { order: 2; }
.category-block__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.category-block__placeholder {
	aspect-ratio: 4/3; background: var(--white); border: 2px dashed var(--border); border-radius: var(--radius-lg);
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--orange);
}
.category-block__placeholder .sfu-icon { width: 48px; height: 48px; }
.category-block__placeholder span { font-family: var(--font-display); color: var(--navy); font-weight: 600; }
.category-block__content h3 { font-size: 26px; }
.category-block__content p { color: var(--muted); }
.category-showcase__more { text-align: center; margin-top: 20px; }

/* ---------- Subscribe band ---------- */
.subscribe-band { background: var(--navy); position: relative; overflow: hidden; }
.subscribe-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 56px 24px; flex-wrap: wrap; position: relative; z-index: 1; }
.subscribe-band__text h2 { color: var(--white); }
.subscribe-band__text p { color: var(--cream); max-width: 420px; margin-bottom: 0; }
.subscribe-form { display: flex; gap: 10px; flex-wrap: wrap; }
.subscribe-form input[type="email"] { padding: 13px 20px; border-radius: 999px; border: none; min-width: 260px; font-size: 15px; }
.subscribe-form__message { width: 100%; margin-top: 10px; font-weight: 600; }
.subscribe-form__message--success { color: #a9e0b4; }
.subscribe-form__message--error { color: #f3a9a9; }

/* ---------- Who we are ---------- */
.who-we-are__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.who-we-are__media { display: flex; justify-content: center; }
.who-we-are__media img { width: 220px; opacity: 0.9; }
.who-we-are__text p { color: var(--muted); max-width: 560px; }

/* ---------- Story bands (About page) ---------- */
.story-band { padding: 80px 0; text-align: center; }
.story-band--cream { background: var(--cream); }
.story-band--dark { background: var(--navy); }
.story-band__inner { max-width: 760px; margin: 0 auto; }
.story-band__title { font-size: clamp(26px, 3.4vw, 40px); }
.story-band__title--light { color: var(--white); }
.story-band__text { color: var(--muted); font-size: 17px; }
.story-band__text--light { color: var(--cream); }
.story-split__inner { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 50px; align-items: center; }
.story-split--muted { background: #faf6ea; }
.story-split__inner--reverse { grid-template-columns: 1.3fr 0.7fr; }
.story-split__inner--reverse .story-split__media { order: 2; }
.story-split__frame {
	aspect-ratio: 1; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center;
	color: var(--orange); border: 6px solid var(--white); box-shadow: var(--shadow);
}
.story-split__frame .sfu-icon { width: 64px; height: 64px; }
.story-split__text h2 { font-size: 28px; }
.story-split__text p { color: var(--muted); font-size: 16.5px; }

/* ---------- Products page ---------- */
.category-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.category-filters__chip { background: var(--white); border: 2px solid var(--border); border-radius: 999px; padding: 9px 18px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--navy); }
.category-filters__chip.is-active, .category-filters__chip:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.product-group { margin-bottom: 56px; scroll-margin-top: 140px; }
.product-group__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.product-group__head h2 { font-size: 24px; margin: 0; }
.product-group__link { font-weight: 600; color: var(--orange-dark); font-size: 14px; }
.product-group__empty { color: var(--muted); background: var(--cream); border-radius: var(--radius-md); padding: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-grid__item.is-hidden { display: none; }
.show-more-btn { margin-top: 22px; display: block; margin-left: auto; margin-right: auto; }

/* ---------- Category (range) hero ---------- */
.category-hero { background: var(--cream); }
.category-hero__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; padding: 60px 24px; }
.category-hero__text p { color: var(--muted); }
.category-hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.category-hero__placeholder { aspect-ratio: 4/3; background: var(--white); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--orange); }
.category-hero__placeholder .sfu-icon { width: 60px; height: 60px; }
.category-hero__back { margin-top: 30px; }

/* ---------- Single product ---------- */
.single-product__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; }
.single-product__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 1; object-fit: cover; }
.single-product__placeholder { aspect-ratio: 1; background: var(--cream); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--orange); }
.single-product__placeholder .sfu-icon { width: 80px; height: 80px; }
.single-product__cat a { color: var(--orange-dark); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.single-product__title { font-size: 34px; margin: 6px 0 18px; }
.single-product__meta { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 18px; color: var(--muted); font-size: 14.5px; }
.single-product__badges { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 24px; }
.single-product__badges li { display: flex; align-items: center; gap: 8px; background: var(--cream); border-radius: 999px; padding: 8px 14px; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.single-product__badges .sfu-icon { width: 16px; height: 16px; color: var(--orange); }
.single-product__desc { color: var(--muted); margin-bottom: 26px; }

/* ---------- Contact page ---------- */
.contact-page__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0; }
.contact-list li, .contact-list a { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); }
.contact-list .sfu-icon { color: var(--orange); margin-top: 2px; }
.contact-form { background: var(--cream); border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-weight: 600; font-size: 14px; color: var(--navy); margin-top: 10px; }
.contact-form input, .contact-form textarea { padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); font-family: var(--font-body); font-size: 15px; resize: vertical; }
.contact-form button { margin-top: 18px; align-self: flex-start; }
.form-message { margin-top: 14px; font-weight: 600; }
.form-message--success { color: #2f7a3d; }
.form-message--error { color: #c8410f; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: var(--cream); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding: 64px 24px 40px; }
.footer__brand img { border-radius: 50%; margin-bottom: 16px; }
.footer__brand p { color: rgba(253,243,217,0.75); font-size: 14.5px; }
.footer__socials { display: flex; gap: 10px; margin-top: 12px; }
.footer__socials a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(253,243,217,0.35); display: flex; align-items: center; justify-content: center; color: var(--cream); text-transform: uppercase; font-size: 12px; }
.footer__col h3 { color: var(--white); font-size: 16px; margin-bottom: 16px; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { color: rgba(253,243,217,0.8); font-size: 14.5px; }
.footer-menu a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: rgba(253,243,217,0.85); font-size: 14px; }
.footer-contact .sfu-icon { color: var(--orange); margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(253,243,217,0.15); }
.footer__bottom-inner { display: flex; justify-content: space-between; padding: 18px 24px; font-size: 13px; color: rgba(253,243,217,0.65); flex-wrap: wrap; gap: 8px; }
.footer__bottom-inner a { color: rgba(253,243,217,0.65); }

/* ---------- Generic page/blog ---------- */
.page-header { text-align: center; margin-bottom: 30px; }
.page-title { font-size: 34px; }
.page-body { max-width: 760px; margin: 0 auto; color: var(--ink); }
.page-body p { margin-bottom: 1.2em; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.blog-card__media img { aspect-ratio: 4/3; object-fit: cover; }
.blog-card__body { padding: 18px; }
.pagination { text-align: center; margin-top: 30px; }
.pagination .page-numbers { display: inline-flex; gap: 6px; }
.pagination a, .pagination span { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border); color: var(--navy); }
.pagination .current { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ---------- 404 ---------- */
.error-404-page { text-align: center; padding: 100px 24px; }
.error-404__icon { width: 70px; height: 70px; color: var(--orange); margin: 0 auto 18px; }
.error-404-page h1 { font-size: 30px; }
.error-404-page p { color: var(--muted); max-width: 480px; margin: 0 auto 26px; }
.error-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1020px) {
	.hero__inner { grid-template-columns: 1fr; text-align: center; padding-top: 56px; }
	.hero__cta { justify-content: center; }
	.hero__media { order: -1; margin-bottom: 10px; }
	.category-block, .story-split__inner, .story-split__inner--reverse,
	.who-we-are__inner, .category-hero__inner, .single-product__inner, .contact-page__inner {
		grid-template-columns: 1fr;
	}
	.category-block--reverse .category-block__media,
	.story-split__inner--reverse .story-split__media { order: 0; }
	.footer__grid { grid-template-columns: 1fr 1fr; }
	.product-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
	.topbar__contact { gap: 12px; }
	.topbar__contact a span, .site-tagline { display: none; }
	.primary-navigation {
		position: fixed; inset: 0; top: 0; background: var(--white); z-index: 900; padding: 90px 24px 40px;
		transform: translateX(-100%); transition: transform 0.25s ease; overflow-y: auto;
	}
	.primary-navigation.is-open { transform: translateX(0); }
	.primary-menu { flex-direction: column; align-items: stretch; gap: 2px; }
	.primary-menu > li > a { padding: 14px 10px; border-bottom: 1px solid var(--border); border-radius: 0; justify-content: space-between; }
	.sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 14px; display: none; }
	.menu-item-has-children.is-open > .sub-menu { display: grid; }
	.menu-toggle, .icon-btn { display: flex; }
	.header-cta { display: none; }
}

@media (max-width: 640px) {
	.footer__grid { grid-template-columns: 1fr; padding: 50px 24px 30px; }
	.product-grid, .blog-grid { grid-template-columns: 1fr; }
	.subscribe-band__inner { text-align: center; justify-content: center; }
	.subscribe-form { justify-content: center; }
	.hero__title { font-size: 30px; }
	.section { padding: 52px 0; }
}
