:root {
	--green-950: #102f1d;
	--green-900: #164026;
	--green-800: #1c512f;
	--green-700: #28683d;
	--lime: #8fca3c;
	--lime-light: #b7e66b;
	--cream: #f7f6ef;
	--cream-deep: #eef1e4;
	--white: #fff;
	--ink: #17251c;
	--muted: #66736b;
	--line: #dde4d8;
	--orange: #f4773d;
	--orange-dark: #dc5c26;
	--orange-soft: #fff0e8;
	--shadow: 0 22px 65px rgba(18, 54, 31, .11);
	--radius-lg: 32px;
	--radius-md: 20px;
	--radius-sm: 12px;
	--container: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--white);
	font-family: "DM Sans", sans-serif;
	font-size: 17.6px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.menu-is-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 .65em;
	font-family: "Manrope", sans-serif;
	line-height: 1.12;
	letter-spacing: -.035em;
}

h1 {
	font-size: clamp(2.9rem, 5.35vw, 5.8rem);
}

h2 {
	font-size: clamp(2.1rem, 3.7vw, 4rem);
}

h3 {
	font-size: 1.2rem;
}

p {
	margin: 0 0 1.4em;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.section {
	padding: 92px 0;
}

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

.skip-link {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	background: var(--white);
	color: var(--green-900);
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: translateY(0);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--green-700);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 26px;
	height: 2px;
	background: var(--orange);
}

.eyebrow-light {
	color: var(--lime-light);
}

.lead {
	color: var(--muted);
	font-size: 1.1rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 54px;
	padding: 0 25px;
	border: 0;
	border-radius: 999px;
	background: var(--orange);
	color: var(--white);
	font-weight: 800;
	line-height: 1.1;
	box-shadow: 0 10px 26px rgba(244, 119, 61, .24);
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
	background: var(--orange-dark);
	box-shadow: 0 13px 34px rgba(244, 119, 61, .3);
	transform: translateY(-2px);
}

.button-small {
	min-height: 44px;
	padding-inline: 19px;
	font-size: .82rem;
}

.button-light {
	background: var(--white);
	color: var(--green-900);
	box-shadow: none;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	color: var(--green-800);
	font-weight: 800;
}

.text-link span {
	display: grid;
	width: 32px;
	height: 32px;
	border: 1px solid var(--line);
	border-radius: 50%;
	place-items: center;
	transition: background .2s, color .2s;
}

.text-link:hover span {
	background: var(--green-800);
	color: var(--white);
}

.text-link-light {
	color: var(--white);
}

.text-link-light span {
	border-color: rgba(255, 255, 255, .4);
}

.site-header {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	left: 0;
	height: 84px;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
	color: var(--white);
	transition: background .25s, height .25s, box-shadow .25s;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
	height: 72px;
	background: rgba(15, 45, 27, .97);
	box-shadow: 0 10px 35px rgba(8, 27, 15, .18);
	backdrop-filter: blur(12px);
}

.header-shell {
	display: flex;
	align-items: center;
	width: min(calc(100% - 40px), 1320px);
	height: 100%;
	margin-inline: auto;
}

.brand {
	flex: 0 0 168px;
	height: 68px;
	overflow: hidden;
}

.brand img,
.brand .custom-logo {
	width: 158px;
	height: 68px;
	max-height: 68px;
	object-fit: contain;
	object-position: left center;
	filter: drop-shadow(0 2px 2px rgba(0,0,0,.15));
	mix-blend-mode: screen;
}

.primary-navigation {
	margin-inline: auto;
}

.site-menu,
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-menu {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.6vw, 27px);
}

.site-menu a {
	position: relative;
	display: block;
	padding: 29px 0;
	font-size: .76rem;
	font-weight: 700;
	white-space: nowrap;
}

.site-menu a::after {
	position: absolute;
	right: 0;
	bottom: 20px;
	left: 0;
	height: 2px;
	background: var(--lime);
	content: "";
	transform: scaleX(0);
	transition: transform .2s;
}

.site-menu a:hover::after,
.site-menu .current-menu-item a::after {
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
}

.hero {
	position: relative;
	display: flex;
	min-height: 740px;
	align-items: center;
	overflow: hidden;
	color: var(--white);
}

.hero-media,
.hero-shade {
	position: absolute;
	inset: 0;
}

.hero-media {
	background-position: center 43%;
	background-size: cover;
	transform: scale(1.002);
}

.hero-shade {
	background: linear-gradient(90deg, rgba(8, 35, 18, .94) 0%, rgba(8, 35, 18, .75) 37%, rgba(8, 35, 18, .15) 67%, rgba(8, 35, 18, .05) 100%),
		linear-gradient(0deg, rgba(8, 35, 18, .45), transparent 40%);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding-top: 85px;
}

.hero-content h1 {
	max-width: 720px;
	margin-bottom: 24px;
}

.hero-content > p {
	max-width: 640px;
	color: rgba(255,255,255,.84);
	font-size: 1.12rem;
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 34px;
}

.hero-trust {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 42px;
}

.trust-faces {
	display: flex;
}

.trust-faces span {
	display: grid;
	width: 38px;
	height: 38px;
	margin-left: -8px;
	border: 2px solid var(--green-900);
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	font-weight: 800;
	place-items: center;
}

.trust-faces span:first-child {
	margin-left: 0;
}

.hero-trust p {
	margin: 0;
	color: rgba(255,255,255,.7);
	font-size: .74rem;
	line-height: 1.4;
}

.hero-trust strong {
	color: var(--white);
	font-size: .82rem;
}

.society-strip {
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
	background: var(--white);
}

.society-strip-inner,
.society-logos {
	display: flex;
	align-items: center;
}

.society-strip-inner {
	justify-content: space-between;
	gap: 40px;
}

.society-strip-inner > p {
	max-width: 165px;
	margin: 0;
	color: var(--muted);
	font-size: .75rem;
	line-height: 1.35;
}

.society-logos {
	flex: 1;
	justify-content: space-between;
	gap: 25px;
	color: #78847b;
	font-family: "Manrope", sans-serif;
	font-size: .86rem;
	font-weight: 800;
}

.society-logos span {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.society-logos i {
	color: var(--green-700);
	font-style: normal;
}

.problem-section {
	background: linear-gradient(135deg, #fff 55%, #f5f7ef);
}

.split-layout {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 100px;
	align-items: center;
}

.section-intro h2 {
	max-width: 500px;
}

.section-intro .lead {
	max-width: 500px;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.problem-card {
	min-height: 176px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	box-shadow: 0 14px 45px rgba(25, 61, 37, .05);
}

.problem-card b {
	display: grid;
	width: 36px;
	height: 36px;
	margin-bottom: 20px;
	border-radius: 50%;
	background: var(--orange-soft);
	color: var(--orange-dark);
	font-size: .75rem;
	place-items: center;
}

.problem-card p {
	margin: 0;
	font-weight: 600;
	line-height: 1.55;
}

.problem-solution {
	border-color: var(--orange);
	background: var(--orange);
	color: var(--white);
}

.problem-solution b {
	background: var(--white);
	color: var(--orange-dark);
}

.value-section {
	position: relative;
	overflow: hidden;
	background: var(--cream);
}

.value-section::before {
	position: absolute;
	top: -250px;
	right: -180px;
	width: 520px;
	height: 520px;
	border: 80px solid rgba(143, 202, 60, .08);
	border-radius: 50%;
	content: "";
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 50px;
	margin-bottom: 44px;
}

.section-heading > div:first-child {
	max-width: 700px;
}

.section-heading > p {
	max-width: 470px;
	margin: 0;
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.75;
}

.section-heading.centered {
	display: block;
	max-width: 780px;
	margin: 0 auto 46px;
	text-align: center;
}

.section-heading.centered .eyebrow {
	justify-content: center;
}

.section-heading.centered p {
	margin-inline: auto;
}

.feature-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.feature-card {
	min-height: 330px;
	padding: 32px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: rgba(255,255,255,.78);
	transition: transform .25s, box-shadow .25s;
}

.feature-card:hover {
	border-color: var(--green-800);
	background: var(--green-900);
	color: var(--white);
	box-shadow: var(--shadow);
	transform: translateY(-6px);
}

.feature-card:hover p,
.feature-card:hover .card-subheading {
	color: rgba(255,255,255,.78);
}

.feature-card:hover .feature-icon {
	background: var(--orange);
	color: var(--white);
}

.feature-card.featured {
	border-color: var(--green-800);
	background: var(--green-900);
	color: var(--white);
	transform: translateY(-14px);
}

.feature-icon {
	display: grid;
	width: 58px;
	height: 58px;
	margin-bottom: 55px;
	border-radius: 16px;
	background: var(--cream-deep);
	color: var(--green-800);
	font-size: 1.4rem;
	font-weight: 800;
	place-items: center;
}

.featured .feature-icon {
	background: var(--orange);
	color: var(--white);
}

.feature-card p {
	margin: 0;
	color: var(--muted);
	font-size: .9rem;
}

.card-subheading {
	display: block;
	margin: -2px 0 12px;
	color: var(--green-800);
	font-size: 1rem;
	line-height: 1.45;
}

.featured p {
	color: rgba(255,255,255,.7);
}

.schedule-pill {
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 14px;
	margin: 48px auto 0;
	padding: 10px 19px 10px 10px;
	border-radius: 999px;
	background: var(--white);
	color: var(--muted);
	font-size: .78rem;
	box-shadow: 0 8px 26px rgba(25, 61, 37, .07);
}

.schedule-pill span {
	display: grid;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	font-size: 1rem;
	place-items: center;
}

.schedule-pill strong {
	color: var(--green-900);
}

.society-section {
	background: var(--white);
}

.society-panel {
	display: grid;
	min-height: 650px;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--green-900);
	box-shadow: var(--shadow);
}

.society-visual {
	position: relative;
	background: linear-gradient(0deg, rgba(12, 52, 27, .24), rgba(12, 52, 27, .03)), url("../images/fresh-bazzar-society-experience.jpg") center / cover;
}

.market-stat {
	position: absolute;
	right: 28px;
	bottom: 28px;
	display: flex;
	flex-direction: column;
	padding: 22px 26px;
	border: 1px solid rgba(255,255,255,.5);
	border-radius: 18px;
	background: rgba(255,255,255,.91);
	color: var(--green-900);
	backdrop-filter: blur(8px);
}

.market-stat strong {
	font-family: "Manrope", sans-serif;
	font-size: 2rem;
	line-height: 1;
}

.market-stat span {
	margin-top: 7px;
	color: var(--muted);
	font-size: .72rem;
}

.society-copy {
	padding: 70px 65px;
	color: var(--white);
}

.society-copy h2 {
	font-size: clamp(2.1rem, 3.3vw, 3.5rem);
}

.society-copy > p {
	color: rgba(255,255,255,.7);
}

.check-list,
.benefit-list {
	margin: 35px 0;
	padding: 0;
	list-style: none;
}

.check-list li,
.benefit-list li {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.check-list li > span {
	display: grid;
	flex: 0 0 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	font-weight: 900;
	place-items: center;
}

.check-list strong,
.check-list small,
.benefit-list strong,
.benefit-list small {
	display: block;
}

.check-list small {
	color: rgba(255,255,255,.6);
}

.process-section {
	background: var(--cream);
}

.process-track {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}

.process-track::before {
	position: absolute;
	z-index: 0;
	top: 67px;
	right: 10%;
	left: 10%;
	height: 1px;
	background: #cad4c5;
	content: "";
}

.process-track article {
	position: relative;
	z-index: 1;
	padding: 0 15px;
	text-align: center;
}

.process-track article > span {
	display: block;
	margin-bottom: 20px;
	color: var(--green-700);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .12em;
}

.process-track i {
	display: grid;
	width: 76px;
	height: 76px;
	margin: 0 auto 28px;
	border: 7px solid var(--cream);
	border-radius: 50%;
	background: var(--green-900);
	color: var(--white);
	font-size: 1.35rem;
	font-style: normal;
	font-weight: 800;
	box-shadow: 0 0 0 1px #ccd7c8;
	place-items: center;
}

.process-track article:nth-child(3) i {
	background: var(--orange);
	color: var(--white);
}

.process-track p {
	margin: 0;
	color: var(--muted);
	font-size: .82rem;
	line-height: 1.5;
}

.promise-section {
	position: relative;
	overflow: hidden;
	background: var(--green-950);
	color: var(--white);
}

.promise-section::before {
	position: absolute;
	right: -100px;
	bottom: -200px;
	width: 650px;
	height: 650px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(143,202,60,.19), transparent 67%);
	content: "";
}

.promise-video,
.promise-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.promise-video {
	object-fit: cover;
}

.promise-overlay {
	background: linear-gradient(90deg, rgba(9,40,22,.96), rgba(9,40,22,.8)), rgba(9,40,22,.72);
}

.promise-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 110px;
	align-items: center;
}

.promise-copy p {
	max-width: 570px;
	color: rgba(255,255,255,.68);
	font-size: 1.05rem;
}

.fresh-route {
	display: flex;
	align-items: center;
	gap: 17px;
	margin: 35px 0;
	color: var(--white);
	font-size: .86rem;
}

.fresh-route span {
	color: var(--orange);
}

.quality-steps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 13px;
}

.quality-steps > div {
	display: flex;
	align-items: center;
	gap: 17px;
	min-height: 102px;
	padding: 18px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 17px;
	background: rgba(255,255,255,.055);
}

.quality-steps > div:last-child {
	grid-column: 1 / -1;
}

.quality-steps b {
	display: grid;
	flex: 0 0 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	font-size: .72rem;
	place-items: center;
}

.quality-steps strong,
.quality-steps small {
	display: block;
}

.quality-steps small {
	color: rgba(255,255,255,.55);
}

.trust-section {
	background: var(--white);
}

.trust-grid {
	display: grid;
	grid-template-columns: 1fr .9fr 1.15fr;
	gap: 24px;
	align-items: center;
}

.receipt-card {
	position: relative;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--cream);
	box-shadow: var(--shadow);
}

.receipt-card::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 14px;
	background: radial-gradient(circle at 7px -1px, transparent 8px, var(--cream) 9px);
	background-size: 14px 14px;
	content: "";
}

.receipt-head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 26px;
	padding-bottom: 18px;
	border-bottom: 1px dashed #b9c4b4;
	color: var(--green-800);
}

.receipt-row,
.receipt-total {
	display: flex;
	justify-content: space-between;
	padding: 11px 0;
	font-size: .88rem;
}

.receipt-total {
	margin-top: 10px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	font-size: 1rem;
}

.receipt-card > small {
	display: block;
	margin-top: 18px;
	color: var(--orange-dark);
	text-align: center;
}

.receipt-discount {
	color: var(--orange-dark);
}

.receipt-points {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-top: 15px;
	padding: 13px;
	border-radius: 12px;
	background: var(--orange-soft);
}

.receipt-points > span {
	display: grid;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	place-items: center;
}

.receipt-points strong,
.receipt-points small {
	display: block;
}

.receipt-points small {
	color: var(--muted);
	font-size: .68rem;
}

.benefit-list {
	margin: 0;
}

.benefit-list li > span {
	display: grid;
	flex: 0 0 47px;
	height: 47px;
	border-radius: 14px;
	background: var(--cream-deep);
	color: var(--green-800);
	font-size: 1.15rem;
	font-weight: 800;
	place-items: center;
}

.benefit-list small {
	color: var(--muted);
}

.rewards-card {
	min-height: 380px;
	padding: 42px;
	border-radius: var(--radius-lg);
	background: var(--green-900);
	color: var(--white);
	box-shadow: var(--shadow);
}

.reward-badge {
	display: grid;
	width: 56px;
	height: 56px;
	margin-bottom: 45px;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	font-size: 1.35rem;
	place-items: center;
}

.rewards-card h3 {
	font-size: 1.75rem;
}

.reward-flow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 30px 0;
	font-size: .75rem;
	font-weight: 700;
}

.reward-flow span {
	padding: 8px 12px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 999px;
}

.reward-flow i {
	color: var(--lime);
	font-style: normal;
}

.rewards-card > a {
	color: var(--lime-light);
	font-size: .83rem;
	font-weight: 800;
}

.digital-section {
	overflow: hidden;
	background: var(--cream);
}

.digital-grid {
	display: grid;
	grid-template-columns: 1fr .85fr;
	gap: 90px;
	align-items: center;
}

.digital-grid > div:first-child {
	max-width: 610px;
}

.digital-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 35px;
}

.digital-features span {
	padding: 13px 16px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255,255,255,.65);
	font-size: .82rem;
	font-weight: 700;
}

.phone-wrap {
	position: relative;
	min-height: 540px;
}

.phone-wrap::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: var(--orange);
	content: "";
	transform: translate(-50%, -50%);
}

.phone {
	position: relative;
	z-index: 1;
	width: 278px;
	min-height: 550px;
	margin: 0 auto;
	padding: 28px 19px 22px;
	border: 8px solid #14251a;
	border-radius: 42px;
	background: var(--white);
	box-shadow: 0 35px 70px rgba(18, 54, 31, .25);
	transform: rotate(3deg);
}

.phone-top {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 80px;
	height: 18px;
	border-radius: 20px;
	background: #14251a;
	transform: translateX(-50%);
}

.phone-brand-logo {
	width: 78px;
	height: 58px;
	margin: 7px 0 10px;
	object-fit: contain;
	object-position: left center;
}

.phone > p {
	margin-bottom: 12px;
	font-size: .72rem;
	font-weight: 800;
}

.phone-notice {
	display: flex;
	gap: 10px;
	padding: 13px;
	border-radius: 13px;
	background: var(--green-900);
	color: var(--white);
}

.phone-notice > span {
	font-size: 1.3rem;
}

.phone-notice strong,
.phone-notice small {
	display: block;
}

.phone-notice strong {
	font-size: .7rem;
}

.phone-notice small {
	color: rgba(255,255,255,.65);
	font-size: .55rem;
}

.phone-title {
	margin: 25px 0 12px;
	font-size: .75rem;
	font-weight: 800;
}

.phone-products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 7px;
}

.phone-products span {
	display: grid;
	min-height: 95px;
	padding: 12px 4px;
	border-radius: 10px;
	background: var(--cream);
	font-size: 1.7rem;
	text-align: center;
	place-items: center;
}

.phone-products b {
	font-size: .52rem;
}

.phone button {
	width: 100%;
	margin-top: 23px;
	padding: 12px;
	border: 0;
	border-radius: 999px;
	background: var(--orange);
	color: var(--white);
	font-size: .65rem;
	font-weight: 800;
}

.whatsapp-bubble {
	position: absolute;
	z-index: 2;
	right: 5px;
	bottom: 65px;
	padding: 14px 17px;
	border-radius: 14px;
	background: var(--white);
	color: var(--green-800);
	font-size: .75rem;
	font-weight: 800;
	box-shadow: var(--shadow);
}

.whatsapp-bubble i {
	display: inline-grid;
	width: 25px;
	height: 25px;
	margin-right: 8px;
	border-radius: 50%;
	background: #22bd65;
	color: var(--white);
	font-size: .72rem;
	font-style: normal;
	place-items: center;
}

.whatsapp-bubble::first-letter {
	color: #22bd65;
}

.resident-section {
	background: var(--white);
}

.day-timeline {
	display: grid;
	grid-template-columns: 1.3fr auto repeat(4, 1fr);
	gap: 14px;
	align-items: center;
}

.time-card {
	display: flex;
	min-height: 115px;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
	border-radius: 18px;
	background: var(--green-900);
	color: var(--white);
}

.time-card strong {
	color: #ffb28d;
	font-family: "Manrope", sans-serif;
	font-size: 1.35rem;
}

.time-card span {
	font-size: .78rem;
}

.timeline-arrow {
	color: var(--orange);
	font-size: 1.8rem;
}

.timeline-step {
	display: flex;
	min-height: 115px;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 18px;
}

.timeline-step b {
	color: var(--green-700);
	font-size: .72rem;
}

.timeline-step span {
	font-weight: 800;
}

.no-hassle {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 30px;
	color: var(--muted);
	font-size: .98rem;
	font-weight: 700;
}

.no-hassle span::first-letter {
	color: var(--orange);
}

.benefits-section {
	background: var(--cream);
}

.society-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.society-benefits article {
	min-height: 230px;
	padding: 35px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	transition: background .25s;
}

.society-benefits article:hover {
	background: var(--white);
}

.society-benefits article > span {
	display: grid;
	width: 48px;
	height: 48px;
	margin-bottom: 34px;
	border-radius: 14px;
	background: var(--green-900);
	color: var(--white);
	font-size: 1.15rem;
	font-weight: 800;
	place-items: center;
}

.society-benefits article:nth-child(2) > span,
.society-benefits article:nth-child(5) > span {
	background: var(--orange);
}

.society-benefits p {
	margin: 0;
	color: var(--muted);
	font-size: .88rem;
}

.society-benefits h3 {
	font-size: 1.35rem;
	line-height: 1.3;
}

.society-benefits article:nth-child(2) > span {
	background: var(--green-900);
	color: var(--white);
}

.testimonials-section {
	position: relative;
	overflow: hidden;
	background: var(--green-900);
	color: var(--white);
}

.testimonials-section::before {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(143,202,60,.16), transparent 30%),
		linear-gradient(120deg, transparent 55%, rgba(255,255,255,.035));
	content: "";
}

.section-heading-light p {
	color: rgba(255,255,255,.65);
}

.testimonial-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: center;
}

.testimonial-grid article {
	padding: 32px;
	border-radius: var(--radius-md);
	background: var(--white);
	color: var(--ink);
}

.testimonial-grid .testimonial-featured {
	padding: 42px;
	background: var(--lime);
	transform: translateY(-12px);
}

.stars {
	margin-bottom: 20px;
	color: #f2ac32;
	font-size: .8rem;
	letter-spacing: .15em;
}

.testimonial-featured .stars {
	color: var(--green-900);
}

blockquote {
	margin: 0 0 28px;
	font-family: "Manrope", sans-serif;
	font-size: .96rem;
	font-weight: 600;
	line-height: 1.65;
}

.quote-mark {
	height: 35px;
	color: var(--green-900);
	font-family: Georgia, serif;
	font-size: 4rem;
	line-height: 1;
}

.person {
	display: flex;
	align-items: center;
	gap: 13px;
}

.person > span {
	display: grid;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--green-900);
	color: var(--white);
	font-size: .7rem;
	font-weight: 800;
	place-items: center;
}

.person p,
.person small,
.person strong {
	display: block;
	margin: 0;
}

.person small {
	color: var(--muted);
	font-size: .7rem;
}

.final-cta {
	padding: 85px 0;
	background: var(--orange);
	color: var(--white);
}

.final-cta-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 210px 310px;
	align-items: center;
	gap: 38px;
}

.final-cta-copy {
	position: relative;
	z-index: 2;
}

.final-cta-person {
	grid-column: 3;
	align-self: flex-end;
	width: 310px;
	max-height: 520px;
	margin: -85px 0;
	object-fit: contain;
	object-position: bottom;
}

/* Interactive daily-hassle section. */
.problem-section {
	background: #f9f8f2;
}

.hassle-experience {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 28px;
	align-items: stretch;
}

.hassle-tabs {
	display: grid;
	gap: 8px;
}

.hassle-tab {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--white);
	color: var(--ink);
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.hassle-tab > span {
	color: var(--orange-dark);
	font-size: .72rem;
	font-weight: 800;
}

.hassle-tab:hover,
.hassle-tab:focus-visible,
.hassle-tab.is-active {
	border-color: var(--green-800);
	background: var(--green-900);
	color: var(--white);
	transform: translateX(5px);
}

.hassle-tab:hover > span,
.hassle-tab:focus-visible > span,
.hassle-tab.is-active > span {
	color: #ffad83;
}

.hassle-display {
	position: sticky;
	top: 95px;
	min-height: 610px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--green-950);
	box-shadow: var(--shadow);
}

.hassle-display::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(9,40,22,.95), transparent 66%);
	content: "";
}

.hassle-display img {
	width: 100%;
	height: 100%;
	min-height: 610px;
	object-fit: cover;
	transition: transform .45s ease, opacity .2s;
}

.hassle-display.is-changing img {
	opacity: .75;
	transform: scale(1.025);
}

.hassle-display-copy {
	position: absolute;
	z-index: 2;
	right: 38px;
	bottom: 35px;
	left: 38px;
	color: var(--white);
}

.hassle-display-copy > span {
	color: #ffad83;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .12em;
}

.hassle-display-copy h3 {
	margin: 8px 0;
	font-size: 1.8rem;
}

.hassle-display-copy p {
	max-width: 620px;
	margin: 0;
	color: rgba(255,255,255,.78);
	font-size: 1rem;
}

.transition-card {
	max-width: 850px;
	margin: 48px auto 0;
	padding: 30px 40px;
	border-top: 3px solid var(--orange);
	text-align: center;
}

.transition-logo {
	width: 116px;
	height: 88px;
	margin: 0 auto 6px;
	object-fit: contain;
}

.transition-card > span {
	color: var(--orange-dark);
	font-size: .75rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.transition-card h3 {
	margin: 10px 0;
	font-size: 1.75rem;
}

.transition-card p {
	margin: 0;
	color: var(--muted);
	font-size: 1.05rem;
}

/* Responsive FreshBazzar comparison. */
.comparison-section {
	background: var(--white);
}

.comparison-table {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 24px;
	box-shadow: var(--shadow);
}

.comparison-title {
	font-weight: 800;
	letter-spacing: -.045em;
}

.comparison-title span {
	display: block;
}

.comparison-head,
.comparison-row {
	display: grid;
	grid-template-columns: .65fr 1.2fr 1.2fr;
}

.comparison-head {
	background: var(--green-950);
	color: var(--white);
}

.comparison-head strong {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 22px 24px;
	font-family: "Manrope", sans-serif;
}

.comparison-head .comparison-brand {
	justify-content: flex-start;
	padding-block: 8px;
}

.comparison-brand img {
	width: 112px;
	height: 70px;
	object-fit: contain;
	object-position: left center;
	mix-blend-mode: screen;
}

.comparison-head i {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--lime);
}

.comparison-head strong:last-child i {
	background: rgba(255,255,255,.55);
}

.comparison-row {
	border-top: 1px solid var(--line);
}

.comparison-row > * {
	margin: 0;
	padding: 22px 24px;
}

.comparison-row h3 {
	background: var(--cream);
	font-size: 1.05rem;
	line-height: 1.35;
}

.comparison-item-icon {
	display: grid;
	width: 38px;
	height: 38px;
	margin-bottom: 11px;
	border-radius: 11px;
	background: var(--green-900);
	color: var(--white);
	font-family: "DM Sans", sans-serif;
	font-size: 1rem;
	place-items: center;
}

.comparison-row > div {
	border-left: 1px solid var(--line);
}

.comparison-row strong {
	display: block;
	margin-bottom: 5px;
	font-size: 1rem;
}

.comparison-row p {
	margin: 0;
	color: var(--muted);
	font-size: .84rem;
	line-height: 1.55;
}

.comparison-good {
	background: #f3f9eb;
}

.comparison-good strong {
	color: var(--green-700);
}

.comparison-other strong {
	color: #66706a;
}

.comparison-note {
	margin: 15px 5px 0;
	color: var(--muted);
	font-size: .75rem;
}

.final-cta-inner > div:first-child {
	max-width: 780px;
}

.final-cta h2 {
	font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.final-cta p {
	max-width: 670px;
	margin: 0;
	color: rgba(255,255,255,.82);
}

.final-cta .eyebrow {
	color: var(--white);
}

.final-cta .eyebrow > span {
	background: var(--white);
}

.final-cta-actions {
	display: flex;
	flex: 0 0 240px;
	flex-direction: column;
	gap: 15px;
	text-align: center;
}

.final-cta-actions > a:last-child {
	color: var(--white);
	font-size: .82rem;
	font-weight: 800;
}

.site-footer {
	position: relative;
	overflow: hidden;
	padding: 80px 0 25px;
	background: #0c2a18;
	color: var(--white);
}

.footer-glow {
	position: absolute;
	right: -130px;
	bottom: -300px;
	width: 650px;
	height: 650px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(143,202,60,.14), transparent 65%);
}

.footer-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.25fr 1.2fr 1fr 1.1fr;
	gap: 44px;
	padding-bottom: 60px;
}

.footer-grid h3 {
	margin-bottom: 20px;
	font-size: .92rem;
	letter-spacing: 0;
}

.footer-brand img {
	width: 190px;
	height: 115px;
	margin: -24px 0 12px;
	object-fit: contain;
	object-position: left center;
	mix-blend-mode: screen;
}

.footer-brand p,
.footer-contact p {
	color: rgba(255,255,255,.6);
	font-size: .85rem;
}

.footer-menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(105px, 1fr));
	gap: 9px 18px;
}

.footer-menu li {
	margin: 0;
}

.footer-menu a,
.footer-contact a {
	display: block;
	color: rgba(255,255,255,.68);
	font-size: .78rem;
	transition: color .2s;
}

.footer-menu a:hover,
.footer-contact a:hover {
	color: var(--lime);
}

.footer-contact address {
	max-width: 290px;
	margin-top: 14px;
	color: rgba(255, 255, 255, .7);
	font-size: .88rem;
	font-style: normal;
	line-height: 1.65;
}

.footer-contact a {
	margin-bottom: 7px;
}

.footer-invite {
	padding: 25px;
	border: 1px solid rgba(244,119,61,.42);
	border-radius: 18px;
	background: rgba(255,255,255,.05);
}

.footer-invite > span {
	color: #ffad83;
	font-size: .7rem;
	font-weight: 800;
	text-transform: uppercase;
}

.footer-invite h3 {
	margin-top: 8px;
	font-size: 1.35rem;
}

.footer-invite .button {
	min-height: 44px;
	font-size: .8rem;
}

.footer-bottom {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding-top: 25px;
	border-top: 1px solid rgba(255,255,255,.1);
	color: rgba(255,255,255,.45);
	font-size: .7rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom div {
	display: flex;
	gap: 25px;
}

.content-area {
	min-height: 70vh;
	padding-top: 140px;
	padding-bottom: 100px;
}

/* Shared inner-page system. */
.inner-hero {
	position: relative;
	display: flex;
	min-height: 720px;
	align-items: center;
	background-position: center;
	background-size: cover;
	color: var(--white);
}

.inner-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7,35,18,.96), rgba(7,35,18,.76) 48%, rgba(7,35,18,.18));
}

.inner-hero-content {
	position: relative;
	z-index: 1;
	padding-top: 90px;
}

.inner-hero-content h1 {
	max-width: 900px;
	font-size: clamp(3rem, 5.3vw, 5.6rem);
}

.inner-hero-content h2 {
	max-width: 700px;
	color: var(--lime-light);
	font-size: 1.55rem;
}

.inner-hero-content > p {
	max-width: 690px;
	color: rgba(255,255,255,.8);
	font-size: 1.08rem;
}

.inner-hero-actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 32px;
}

.inner-hero-actions strong {
	max-width: 250px;
	font-size: .82rem;
}

.page-split {
	display: grid;
	grid-template-columns: 1fr .9fr;
	gap: 85px;
	align-items: center;
}

.resident-checks {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 22px;
	margin: 30px 0;
}

.resident-checks span {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .86rem;
	font-weight: 700;
}

.resident-checks i {
	display: grid;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--orange-soft);
	color: var(--orange-dark);
	font-size: .7rem;
	font-style: normal;
	place-items: center;
}

.page-statement {
	color: var(--green-800);
	font-size: 1.35rem;
}

.page-image-card {
	position: relative;
	min-height: 570px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.page-image-card img {
	width: 100%;
	height: 570px;
	object-fit: cover;
}

.page-image-card span {
	position: absolute;
	right: 22px;
	bottom: 22px;
	left: 22px;
	padding: 18px 22px;
	border-radius: 14px;
	background: var(--white);
	color: var(--green-900);
	font-weight: 800;
	text-align: center;
}

.managed-market,
.community-rules,
.partnership-section,
.trust-commitment-section {
	background: var(--green-950);
	color: var(--white);
}

.managed-market .section-heading p,
.community-rules p,
.trust-commitment-section p {
	color: rgba(255,255,255,.68);
}

.operations-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.operations-grid article,
.conduct-grid article,
.needs-grid article,
.pillar-grid article {
	padding: 30px;
	border-radius: 18px;
}

.operations-grid article {
	border: 1px solid rgba(255,255,255,.12);
	background: rgba(255,255,255,.055);
}

.operations-grid article:last-child {
	grid-column: 2 / 4;
}

.operations-grid article > span,
.conduct-grid article > span,
.needs-grid article > span,
.pillar-grid article > span {
	display: grid;
	width: 48px;
	height: 48px;
	margin-bottom: 28px;
	border-radius: 14px;
	background: var(--orange);
	color: var(--white);
	font-weight: 800;
	place-items: center;
}

.operations-grid p {
	margin: 0;
	color: rgba(255,255,255,.6);
	font-size: .84rem;
}

.managed-summary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin-top: 38px;
	color: var(--lime-light);
}

.managed-summary i {
	color: var(--orange);
	font-style: normal;
}

.cleanup-section,
.better-market-section,
.society-needs-section,
.journey-intro,
.three-pillars {
	background: var(--cream);
}

.cleanup-panel {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow);
}

.cleanup-image {
	min-height: 640px;
	background: linear-gradient(0deg, rgba(11,46,25,.18), transparent), url("../images/fresh-bazzar-society-experience.jpg") center / cover;
}

.cleanup-copy {
	padding: 65px;
}

.cleanup-copy blockquote {
	margin: 30px 0;
	padding: 22px 25px;
	border-left: 4px solid var(--orange);
	background: var(--orange-soft);
	color: var(--green-900);
}

.three-promises {
	display: grid;
	gap: 8px;
}

.three-promises span::before {
	margin-right: 9px;
	color: var(--green-700);
	content: "✓";
}

.conduct-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.conduct-grid article,
.needs-grid article,
.pillar-grid article {
	border: 1px solid var(--line);
	background: var(--white);
}

.conduct-grid p,
.needs-grid p,
.pillar-grid p {
	margin: 0;
	color: var(--muted);
	font-size: .84rem;
}

.rules-grid,
.trust-commitment-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 85px;
	align-items: center;
}

.rules-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.rules-list span {
	padding: 16px 18px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 12px;
	background: rgba(255,255,255,.05);
	font-size: .82rem;
	font-weight: 700;
}

.rules-list span::before {
	margin-right: 9px;
	color: var(--orange);
	content: "◆";
}

.market-difference-grid,
.numbered-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.market-difference-grid article,
.numbered-benefits article {
	padding: 32px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--white);
}

.market-difference-grid small {
	display: block;
	margin-bottom: 25px;
	color: var(--orange-dark);
	font-weight: 800;
}

.market-difference-grid p,
.numbered-benefits p {
	margin: 0;
	color: var(--muted);
	font-size: .84rem;
}

.numbered-benefits article > span {
	display: block;
	margin-bottom: 34px;
	color: var(--orange-dark);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .1em;
}

.partnership-steps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.partnership-steps article {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 25px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 16px;
	background: rgba(255,255,255,.05);
}

.partnership-steps article > span {
	color: var(--orange);
	font-weight: 800;
}

.partnership-steps h3,
.partnership-steps p {
	margin: 0;
}

.partnership-steps p {
	color: rgba(255,255,255,.6);
	font-size: .82rem;
}

.needs-grid,
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.trust-commitment-grid > div:last-child {
	display: grid;
	gap: 10px;
}

.trust-commitment-grid > div:last-child span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 20px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 12px;
	color: rgba(255,255,255,.64);
	font-size: .82rem;
}

.trust-commitment-grid b {
	color: var(--white);
}

.page-final-cta {
	overflow: hidden;
	background: var(--orange);
	color: var(--white);
}

.page-final-cta-inner {
	display: grid;
	min-height: 480px;
	grid-template-columns: 1fr 360px;
	gap: 40px;
	align-items: center;
}

.page-final-cta-inner > div {
	padding: 80px 0;
}

.page-final-cta h2 {
	font-size: clamp(2.5rem, 4.5vw, 4.7rem);
}

.page-final-cta p {
	color: rgba(255,255,255,.8);
}

.page-final-cta-inner > div > div:last-child {
	display: flex;
	align-items: center;
	gap: 28px;
}

.page-final-cta-inner > img {
	align-self: end;
	width: 330px;
	max-height: 520px;
	object-fit: contain;
	object-position: bottom;
}

/* How It Works page. */
.how-hero {
	background-position: center;
}

.journey-steps {
	position: relative;
	max-width: 1000px;
	margin-inline: auto;
}

.journey-steps::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: var(--line);
	content: "";
	transform: translateX(-50%);
}

.journey-step {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 92px 1fr;
	margin-bottom: 28px;
}

.journey-step .journey-card {
	grid-column: 3;
}

.journey-step-reverse .journey-card {
	grid-row: 1;
	grid-column: 1;
}

.journey-number {
	position: relative;
	z-index: 1;
	display: flex;
	grid-column: 2;
	flex-direction: column;
	align-items: center;
}

.journey-number > span {
	margin-bottom: 7px;
	color: var(--orange-dark);
	font-size: .7rem;
	font-weight: 800;
}

.journey-number i {
	display: grid;
	width: 62px;
	height: 62px;
	border: 7px solid var(--cream);
	border-radius: 50%;
	background: var(--green-900);
	color: var(--white);
	font-style: normal;
	place-items: center;
}

.journey-card {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--white);
	box-shadow: 0 15px 40px rgba(18,54,31,.06);
}

.journey-card small {
	display: block;
	margin-bottom: 8px;
	color: var(--green-700);
	font-weight: 800;
}

.journey-card h3 {
	font-size: 1.5rem;
}

.journey-card p {
	color: var(--muted);
	font-size: .88rem;
}

.journey-card > strong {
	color: var(--orange-dark);
	font-size: .82rem;
}

.shop-methods {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 7px;
	margin-top: 20px;
}

.shop-methods span {
	padding: 10px;
	border-radius: 9px;
	background: var(--cream);
	font-size: .68rem;
}

.shop-methods b {
	display: block;
	color: var(--green-800);
}

.complete-journey,
.audiences-section {
	background: var(--green-950);
	color: var(--white);
}

.journey-ribbon {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.journey-ribbon span {
	display: flex;
	min-height: 95px;
	flex-direction: column;
	justify-content: center;
	padding: 18px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 14px;
	background: rgba(255,255,255,.05);
}

.journey-ribbon i {
	color: var(--orange);
	font-size: .68rem;
	font-style: normal;
	font-weight: 800;
}

.market-day-track {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

.market-day-track article {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 16px;
}

.market-day-track span {
	color: var(--orange-dark);
	font-size: .7rem;
	font-weight: 800;
}

.market-day-track h3 {
	margin-top: 30px;
	font-size: 1rem;
}

.market-day-track p {
	margin: 0;
	color: var(--muted);
	font-size: .78rem;
}

.pillar-grid article {
	text-align: center;
}

.pillar-grid article > span {
	margin-inline: auto;
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.audience-grid > article {
	padding: 48px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 24px;
	background: rgba(255,255,255,.05);
}

.audience-grid > article:nth-child(2) {
	background: var(--lime);
	color: var(--green-950);
}

.audience-grid p,
.audience-grid li {
	color: rgba(255,255,255,.66);
}

.audience-grid > article:nth-child(2) .eyebrow,
.audience-grid > article:nth-child(2) p {
	color: var(--green-900);
}

.audience-grid a {
	color: var(--lime-light);
	font-weight: 800;
}

.resident-verbs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.resident-verbs span {
	padding: 14px;
	border: 1px solid rgba(13,51,27,.15);
	border-radius: 11px;
	font-size: .75rem;
}

.resident-verbs b {
	display: block;
	font-size: .95rem;
}

/* Freshness Promise page. */
.freshness-verbs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 30px;
}

.freshness-verbs span {
	padding: 9px 14px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	font-size: .75rem;
	font-weight: 800;
}

.farm-journey-section,
.market-freshness-section,
.beyond-freshness-section {
	background: var(--cream);
}

.farm-journey {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.farm-journey::before {
	position: absolute;
	top: 76px;
	right: 8%;
	left: 8%;
	height: 2px;
	background: var(--line);
	content: "";
}

.farm-journey article {
	position: relative;
	z-index: 1;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--white);
	text-align: center;
}

.farm-journey small {
	display: block;
	margin-bottom: 12px;
	color: var(--orange-dark);
	font-weight: 800;
}

.farm-journey article > span {
	display: grid;
	width: 56px;
	height: 56px;
	margin: 0 auto 25px;
	border-radius: 50%;
	background: var(--green-900);
	color: var(--white);
	place-items: center;
}

.farm-journey h3 {
	font-size: 1.05rem;
}

.farm-journey p {
	margin: 0;
	color: var(--muted);
	font-size: .77rem;
}

.selection-section,
.careful-handling-section,
.promise-principles-section {
	background: var(--green-950);
	color: var(--white);
}

.selection-grid,
.handling-grid,
.freshness-commitment {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 80px;
	align-items: center;
}

.selection-image {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.selection-image img {
	width: 100%;
	height: 620px;
	object-fit: cover;
}

.selection-image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(7,35,18,.75), transparent 48%);
	content: "";
}

.selection-image > span {
	position: absolute;
	z-index: 1;
	right: 28px;
	bottom: 28px;
	left: 28px;
	font-family: "Manrope", sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
}

.selection-grid > div:last-child > p,
.handling-grid p,
.promise-principles-section .section-heading p {
	color: rgba(255,255,255,.68);
}

.selection-concerns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 9px;
	margin: 28px 0;
}

.selection-concerns span {
	padding: 12px 14px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 10px;
	font-size: .78rem;
}

.selection-concerns span::before {
	margin-right: 8px;
	color: var(--orange);
	content: "×";
}

.selection-grid blockquote {
	margin: 25px 0 0;
	padding-left: 20px;
	border-left: 3px solid var(--orange);
	color: var(--lime-light);
}

.quality-check-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.quality-check-grid article,
.promise-principles-grid article,
.experience-quality-grid article {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 18px;
}

.quality-check-grid article > span,
.promise-principles-grid article > span,
.experience-quality-grid article > span {
	display: grid;
	width: 48px;
	height: 48px;
	margin-bottom: 30px;
	border-radius: 14px;
	background: var(--orange);
	color: var(--white);
	font-weight: 800;
	place-items: center;
}

.quality-check-grid p,
.experience-quality-grid p {
	margin: 0;
	color: var(--muted);
	font-size: .82rem;
}

.quality-result {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 38px;
	padding: 20px;
	border-radius: 14px;
	background: var(--orange-soft);
}

.quality-result small {
	color: var(--orange-dark);
	font-weight: 800;
	text-transform: uppercase;
}

.quality-result strong {
	color: var(--green-900);
	font-family: "Manrope", sans-serif;
	font-size: 1.35rem;
}

.handling-stages {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
}

.handling-stages span {
	display: flex;
	min-height: 100px;
	flex-direction: column;
	justify-content: center;
	padding: 13px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 12px;
	background: rgba(255,255,255,.05);
	font-weight: 800;
}

.handling-stages i {
	color: var(--orange);
	font-size: .68rem;
	font-style: normal;
}

.freshness-channel-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.freshness-channel-grid article {
	display: flex;
	gap: 25px;
	padding: 40px;
	border-radius: 22px;
	background: var(--white);
	box-shadow: 0 18px 50px rgba(18,54,31,.07);
}

.freshness-channel-grid article > span {
	display: grid;
	flex: 0 0 58px;
	height: 58px;
	border-radius: 16px;
	background: var(--green-900);
	color: var(--white);
	font-size: 1.2rem;
	place-items: center;
}

.freshness-channel-grid small {
	color: var(--orange-dark);
	font-weight: 800;
}

.freshness-channel-grid h3 {
	margin-top: 7px;
	font-size: 1.55rem;
}

.freshness-channel-grid p {
	color: var(--muted);
	font-size: .86rem;
}

.freshness-channel-grid strong {
	color: var(--green-700);
	font-size: .8rem;
}

.promise-principles-grid,
.experience-quality-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.promise-principles-grid article {
	border-color: rgba(255,255,255,.13);
	background: rgba(255,255,255,.05);
}

.promise-principles-grid p {
	margin: 0;
	color: rgba(255,255,255,.6);
	font-size: .82rem;
}

.shared-route {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.shared-route span {
	display: grid;
	min-width: 105px;
	min-height: 68px;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: var(--white);
	font-weight: 800;
	place-items: center;
}

.shared-route i {
	color: var(--orange);
	font-style: normal;
}

.quality-philosophy {
	padding: 105px 0;
	background: var(--orange);
	color: var(--white);
	text-align: center;
}

.quality-philosophy .container {
	max-width: 950px;
}

.quality-philosophy span {
	display: block;
	height: 55px;
	font-family: Georgia, serif;
	font-size: 6rem;
	line-height: 1;
}

.quality-philosophy h2 {
	font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.quality-philosophy p {
	margin: 0;
	color: rgba(255,255,255,.78);
}

.experience-quality-grid article {
	background: var(--white);
}

.freshness-final-cta {
	padding: 80px 0;
	background: var(--green-950);
}

.freshness-commitment {
	grid-template-columns: 1fr 330px;
}

.freshness-commitment h2 {
	font-size: clamp(2.7rem, 4.6vw, 4.8rem);
}

.freshness-commitment p {
	max-width: 700px;
}

.freshness-cta-actions {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 30px;
}

.commitment-seal {
	padding: 28px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 24px;
	background: rgba(255,255,255,.05);
	text-align: center;
}

.commitment-seal img {
	width: 180px;
	height: 140px;
	margin: 0 auto;
	object-fit: contain;
	mix-blend-mode: screen;
}

.commitment-seal strong,
.commitment-seal span {
	display: block;
}

.commitment-seal span {
	color: var(--lime-light);
	font-size: .8rem;
}

/* For Residents page. */
.resident-hero-line {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.resident-hero-line strong {
	padding: 9px 15px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	font-size: .76rem;
}

.extra-trip-section,
.resident-notifications,
.resident-experience-section,
.resident-types-section {
	background: var(--cream);
}

.no-extra-trip,
.doorstep-reasons {
	display: grid;
	gap: 9px;
	margin: 28px 0;
}

.no-extra-trip span,
.doorstep-reasons span {
	font-weight: 700;
}

.no-extra-trip span::before {
	margin-right: 10px;
	color: var(--orange);
	content: "×";
}

.resident-produce-card {
	position: relative;
	min-height: 570px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.resident-produce-card > img {
	width: 100%;
	height: 570px;
	object-fit: cover;
}

.resident-produce-card > div {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	padding: 22px;
	border-radius: 16px;
	background: var(--white);
}

.resident-produce-card small {
	color: var(--orange-dark);
	font-weight: 800;
}

.resident-produce-card h3,
.resident-produce-card p {
	margin-bottom: 0;
}

.resident-produce-card p {
	color: var(--muted);
	font-size: .8rem;
}

.resident-value-section,
.shop-way-section,
.resident-people-section {
	background: var(--green-950);
	color: var(--white);
}

.resident-value-grid,
.notification-grid,
.doorstep-resident-grid,
.resident-people-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 85px;
	align-items: center;
}

.resident-bill {
	padding: 38px;
	border-radius: 24px;
	background: var(--white);
	color: var(--ink);
	box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.resident-value-grid > div:last-child > p {
	color: rgba(255,255,255,.68);
}

.savings-rewards {
	display: grid;
	gap: 10px;
	margin: 28px 0;
}

.savings-rewards article {
	display: flex;
	gap: 16px;
	padding: 17px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 13px;
	background: rgba(255,255,255,.05);
}

.savings-rewards article > span {
	display: grid;
	flex: 0 0 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--orange);
	place-items: center;
}

.savings-rewards h3,
.savings-rewards p {
	margin: 0;
}

.savings-rewards h3 {
	font-size: 1rem;
}

.savings-rewards p {
	color: rgba(255,255,255,.58);
	font-size: .74rem;
}

.reward-route {
	color: var(--lime-light);
}

.reward-route i {
	padding: 0 8px;
	color: var(--orange);
	font-style: normal;
}

.notification-grid {
	grid-template-columns: 1.15fr .85fr;
}

.market-update-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 30px;
}

.market-update-grid article {
	display: flex;
	gap: 13px;
	padding: 15px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--white);
}

.market-update-grid article > span {
	font-size: 1.1rem;
}

.market-update-grid h3,
.market-update-grid p {
	margin: 0;
}

.market-update-grid h3 {
	font-size: .9rem;
}

.market-update-grid p {
	color: var(--muted);
	font-size: .7rem;
}

.resident-phone {
	position: relative;
	width: 310px;
	min-height: 580px;
	margin-inline: auto;
	padding: 35px 21px 24px;
	border: 9px solid #14251a;
	border-radius: 44px;
	background: var(--white);
	box-shadow: var(--shadow);
}

.resident-phone > img {
	width: 82px;
	height: 68px;
	object-fit: contain;
	object-position: left center;
}

.resident-phone > p {
	font-size: .75rem;
	font-weight: 800;
}

.resident-phone-alert {
	display: flex;
	gap: 10px;
	padding: 14px;
	border-radius: 14px;
	background: var(--green-900);
	color: var(--white);
}

.resident-phone-alert strong,
.resident-phone-alert small {
	display: block;
}

.resident-phone-alert strong {
	font-size: .72rem;
}

.resident-phone-alert small {
	color: rgba(255,255,255,.6);
	font-size: .58rem;
}

.resident-phone > h3 {
	margin-top: 25px;
	font-size: .82rem;
}

.resident-phone-products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 7px;
}

.resident-phone-products span {
	display: grid;
	min-height: 100px;
	padding: 10px 4px;
	border-radius: 10px;
	background: var(--cream);
	font-size: 1.75rem;
	place-items: center;
}

.resident-phone-products b {
	font-size: .55rem;
}

.resident-phone button {
	width: 100%;
	margin-top: 25px;
	padding: 12px;
	border: 0;
	border-radius: 999px;
	background: var(--orange);
	color: var(--white);
	font-size: .7rem;
	font-weight: 800;
}

.shopping-method-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.shopping-method-grid article {
	padding: 30px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 18px;
	background: rgba(255,255,255,.05);
}

.shopping-method-grid small {
	color: var(--orange);
	font-weight: 800;
}

.shopping-method-grid article > span {
	display: grid;
	width: 50px;
	height: 50px;
	margin: 30px 0;
	border-radius: 14px;
	background: var(--lime);
	color: var(--green-950);
	font-weight: 800;
	place-items: center;
}

.shopping-method-grid p {
	margin: 0;
	color: rgba(255,255,255,.6);
	font-size: .82rem;
}

.doorstep-resident-grid {
	grid-template-columns: 1fr 380px;
}

.doorstep-resident-grid > img {
	width: 370px;
	max-height: 620px;
	object-fit: contain;
}

.doorstep-reasons span::before {
	margin-right: 10px;
	color: var(--green-700);
	content: "✓";
}

.resident-experience-grid,
.resident-types-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.resident-experience-grid article,
.resident-types-grid article {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--white);
}

.resident-experience-grid article > span,
.resident-types-grid article > span {
	display: grid;
	width: 48px;
	height: 48px;
	margin-bottom: 28px;
	border-radius: 14px;
	background: var(--green-900);
	color: var(--white);
	font-weight: 800;
	place-items: center;
}

.resident-experience-grid article:nth-child(2n) > span,
.resident-types-grid article:nth-child(2n) > span {
	background: var(--orange);
}

.resident-experience-grid p,
.resident-types-grid p {
	margin: 0;
	color: var(--muted);
	font-size: .82rem;
}

.resident-people-grid {
	grid-template-columns: .9fr 1.1fr;
}

.resident-people-image {
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.resident-people-image img {
	width: 100%;
	height: 600px;
	object-fit: cover;
}

.resident-people-grid > div:last-child > p {
	color: rgba(255,255,255,.68);
}

.community-respect {
	display: flex;
	gap: 15px;
	margin-top: 30px;
	padding: 20px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 14px;
	background: rgba(255,255,255,.05);
}

.community-respect > span {
	display: grid;
	flex: 0 0 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--orange);
	place-items: center;
}

.community-respect p {
	margin: 0;
	font-size: .8rem;
}

.before-after-resident {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.before-after-resident article {
	padding: 40px;
	border: 1px solid var(--line);
	border-radius: 22px;
}

.before-after-resident article:last-child {
	border-color: var(--green-800);
	background: var(--green-900);
	color: var(--white);
}

.before-after-resident article > div {
	display: grid;
	gap: 8px;
}

.before-after-resident span {
	padding: 11px 14px;
	border-radius: 9px;
	background: var(--cream);
	font-size: .82rem;
	font-weight: 700;
}

.before-after-resident article:last-child span {
	background: rgba(255,255,255,.08);
}

.before-after-resident span:not(:last-child)::after {
	float: right;
	color: var(--orange);
	content: "↓";
}

.simple-statement {
	margin: 35px 0 0;
	color: var(--orange-dark);
	font-size: 1.8rem;
	text-align: center;
}

.resident-types-grid {
	grid-template-columns: repeat(4, 1fr);
}

.community-market-line {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
}

.community-market-line strong {
	padding: 9px 14px;
	border-radius: 999px;
	background: var(--green-900);
	color: var(--white);
	font-size: .72rem;
}

/* About Us page. */
.about-hero {
	background-position: center 35%;
}

.about-vision-section,
.about-people-section,
.about-goals-section {
	background: var(--cream);
}

.about-vision-grid,
.about-people-grid,
.partners-grid,
.about-signoff-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.vision-statements {
	display: grid;
	gap: 12px;
}

.vision-statements article {
	display: grid;
	grid-template-columns: 52px 1fr;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--white);
}

.vision-statements article > span {
	grid-row: 1 / 3;
	color: var(--orange-dark);
	font-size: .72rem;
	font-weight: 800;
}

.vision-statements h3,
.vision-statements p {
	margin: 0;
}

.vision-statements p {
	color: var(--muted);
	font-size: .8rem;
}

.about-values-section,
.about-partners-section,
.about-purpose-section {
	background: var(--green-950);
	color: var(--white);
}

.about-values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.about-values-grid article {
	padding: 32px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 18px;
	background: rgba(255,255,255,.05);
}

.about-values-grid article > span,
.about-goals-grid article > span {
	display: grid;
	width: 50px;
	height: 50px;
	margin-bottom: 34px;
	border-radius: 14px;
	background: var(--orange);
	color: var(--white);
	font-weight: 800;
	place-items: center;
}

.about-values-grid p {
	margin: 0;
	color: rgba(255,255,255,.62);
	font-size: .82rem;
}

.about-team-image {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.about-team-image img {
	width: 100%;
	height: 610px;
	object-fit: cover;
}

.about-team-image > div {
	position: absolute;
	right: 25px;
	bottom: 25px;
	left: 25px;
	padding: 20px;
	border-radius: 15px;
	background: var(--white);
}

.about-team-image strong,
.about-team-image span {
	display: block;
}

.about-team-image span {
	color: var(--muted);
	font-size: .76rem;
}

.about-people-grid blockquote {
	margin: 30px 0 0;
	padding: 22px;
	border-left: 4px solid var(--orange);
	background: var(--orange-soft);
	color: var(--green-900);
}

.about-partners-section p {
	color: rgba(255,255,255,.68);
}

.partner-principles {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.partner-principles span {
	display: grid;
	min-height: 120px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 16px;
	background: rgba(255,255,255,.05);
	font-family: "Manrope", sans-serif;
	font-size: 1.2rem;
	font-weight: 800;
	place-items: center;
}

.partner-principles span:nth-child(2),
.partner-principles span:nth-child(3) {
	border-color: var(--orange);
	background: var(--orange);
}

.about-goals-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.about-goals-grid article {
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 17px;
	background: var(--white);
}

.about-goals-grid h3 {
	font-size: 1.05rem;
}

.about-goals-grid p {
	margin: 0;
	color: var(--muted);
	font-size: .78rem;
}

.stakeholder-wheel {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

.stakeholder-wheel article {
	padding: 27px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 17px;
	background: rgba(255,255,255,.05);
	text-align: center;
}

.stakeholder-wheel small {
	color: var(--orange);
	font-weight: 800;
}

.stakeholder-wheel h3 {
	margin-top: 25px;
}

.stakeholder-wheel p {
	margin: 0;
	color: rgba(255,255,255,.58);
	font-size: .78rem;
}

.purpose-statement {
	margin: 42px 0 0;
	color: var(--lime-light);
	font-size: 1.8rem;
	text-align: center;
}

.about-company-signoff {
	padding: 105px 0;
	background: var(--orange);
	color: var(--white);
}

.about-company-signoff h2 {
	font-size: clamp(2.5rem, 4.2vw, 4.4rem);
}

.about-company-signoff p {
	color: rgba(255,255,255,.8);
}

.about-brand-card {
	padding: 35px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 24px;
	background: rgba(17,48,29,.94);
	text-align: center;
}

.about-brand-card img {
	width: 220px;
	height: 175px;
	margin: 0 auto;
	object-fit: contain;
	mix-blend-mode: screen;
}

.about-brand-card span {
	color: var(--lime-light);
	font-size: .75rem;
}

/* FAQ page. */
.faq-hero-links {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 30px;
}

.faq-section {
	background: var(--cream);
}

.resident-faq-section {
	background: var(--green-950);
	color: var(--white);
}

.faq-layout {
	display: grid;
	grid-template-columns: .7fr 1.3fr;
	gap: 75px;
	align-items: start;
}

.faq-layout > aside {
	position: sticky;
	top: 110px;
}

.faq-layout > aside > p {
	color: var(--muted);
}

.resident-faq-section .faq-layout > aside > p {
	color: rgba(255,255,255,.64);
}

.faq-section-icon {
	display: grid;
	width: 70px;
	height: 70px;
	margin-bottom: 30px;
	border-radius: 20px;
	background: var(--orange);
	color: var(--white);
	font-size: 1.5rem;
	place-items: center;
}

.faq-accordion {
	display: grid;
	gap: 10px;
}

.faq-item {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: var(--white);
	transition: border-color .2s, box-shadow .2s;
}

.faq-item.is-open {
	border-color: var(--green-700);
	box-shadow: 0 16px 45px rgba(18,54,31,.08);
}

.faq-item h3 {
	margin: 0;
}

.faq-item button {
	display: grid;
	width: 100%;
	grid-template-columns: 38px 1fr 30px;
	gap: 14px;
	align-items: center;
	padding: 22px 24px;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-family: "Manrope", sans-serif;
	font-size: 1rem;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.faq-item button > span {
	color: var(--orange-dark);
	font-size: .68rem;
}

.faq-item button > i {
	position: relative;
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--cream);
}

.faq-item button > i::before,
.faq-item button > i::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 2px;
	background: var(--green-800);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform .2s;
}

.faq-item button > i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button > i {
	background: var(--orange);
}

.faq-item.is-open button > i::before,
.faq-item.is-open button > i::after {
	background: var(--white);
}

.faq-item.is-open button > i::after {
	transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
	padding: 0 70px 24px 76px;
	color: var(--muted);
	font-size: .88rem;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-answer > strong {
	display: block;
	margin-top: 15px;
	color: var(--green-700);
}

.faq-accordion-dark .faq-item {
	border-color: rgba(255,255,255,.12);
	background: rgba(255,255,255,.055);
}

.faq-accordion-dark .faq-item.is-open {
	border-color: var(--orange);
	box-shadow: none;
}

.faq-accordion-dark .faq-item button {
	color: var(--white);
}

.faq-accordion-dark .faq-item button > span {
	color: #ffad83;
}

.faq-accordion-dark .faq-item button > i {
	background: rgba(255,255,255,.1);
}

.faq-accordion-dark .faq-item button > i::before,
.faq-accordion-dark .faq-item button > i::after {
	background: var(--white);
}

.faq-accordion-dark .faq-answer {
	color: rgba(255,255,255,.64);
}

.faq-final-cta {
	background: var(--orange);
}

/* Contact page and enquiry form. */
.contact-form-section,
.contact-process-section {
	background: var(--cream);
}

.contact-form-layout {
	display: grid;
	grid-template-columns: .7fr 1.3fr;
	gap: 70px;
	align-items: start;
}

.contact-form-layout > div:first-child {
	position: sticky;
	top: 110px;
}

.contact-assurances {
	display: grid;
	gap: 8px;
	margin-top: 30px;
}

.contact-assurances span {
	color: var(--green-700);
	font-size: .82rem;
	font-weight: 800;
}

.contact-form-card {
	padding: 42px;
	border-radius: 24px;
	background: var(--white);
	box-shadow: var(--shadow);
}

.form-notice {
	margin-bottom: 25px;
	padding: 16px 18px;
	border-radius: 12px;
	font-size: .82rem;
	font-weight: 700;
}

.form-notice-success {
	border: 1px solid #a8d77d;
	background: #f0f9e8;
	color: var(--green-800);
}

.form-notice-error {
	border: 1px solid #f3b192;
	background: var(--orange-soft);
	color: #9f411d;
}

.form-notice-warning {
	border: 1px solid #efbd68;
	background: #fff8e8;
	color: #80510b;
}

.form-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 19px;
}

.form-field-full {
	grid-column: 1 / -1;
}

.form-field label {
	display: block;
	margin-bottom: 7px;
	color: var(--green-900);
	font-size: .78rem;
	font-weight: 800;
}

.form-field label b {
	color: var(--orange-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 11px;
	outline: 0;
	background: #fbfcf8;
	color: var(--ink);
	font-size: .82rem;
	transition: border-color .2s, box-shadow .2s, background .2s;
}

.form-field input,
.form-field select {
	height: 52px;
	padding: 0 15px;
}

.form-field textarea {
	min-height: 135px;
	padding: 14px 15px;
	resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--green-700);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(40,104,61,.12);
}

.form-submit {
	margin-top: 25px;
}

.form-privacy {
	margin: 13px 0 0;
	color: var(--muted);
	font-size: .68rem;
}

.direct-contact-section {
	background: var(--green-950);
	color: var(--white);
}

.direct-contact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.direct-contact-grid > * {
	display: flex;
	min-height: 205px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 18px;
	background: rgba(255,255,255,.05);
	transition: transform .2s, border-color .2s;
}

.direct-contact-grid a:hover {
	border-color: var(--orange);
	transform: translateY(-5px);
}

.direct-contact-grid span {
	display: grid;
	width: 48px;
	height: 48px;
	margin-bottom: auto;
	border-radius: 14px;
	background: var(--orange);
	place-items: center;
}

.direct-contact-grid small,
.direct-contact-grid strong {
	display: block;
}

.direct-contact-grid small {
	color: rgba(255,255,255,.56);
	font-size: .7rem;
}

.direct-contact-grid strong {
	font-size: .9rem;
	word-break: break-word;
}

.contact-process-track {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.contact-process-track::before {
	position: absolute;
	top: 43px;
	right: 9%;
	left: 9%;
	height: 2px;
	background: var(--line);
	content: "";
}

.contact-process-track article {
	position: relative;
	z-index: 1;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 17px;
	background: var(--white);
}

.contact-process-track article > span {
	display: grid;
	width: 40px;
	height: 40px;
	margin-bottom: 38px;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	font-size: .68rem;
	font-weight: 800;
	place-items: center;
}

.contact-process-track h3 {
	font-size: 1rem;
}

.contact-process-track p {
	margin: 0;
	color: var(--muted);
	font-size: .76rem;
}

.other-enquiries-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.other-enquiries-grid article {
	padding: 27px;
	border: 1px solid var(--line);
	border-radius: 17px;
}

.other-enquiries-grid article > span {
	display: grid;
	width: 45px;
	height: 45px;
	margin-bottom: 30px;
	border-radius: 13px;
	background: var(--green-900);
	color: var(--white);
	place-items: center;
}

.other-enquiries-grid article:nth-child(2n) > span {
	background: var(--orange);
}

.other-enquiries-grid h3 {
	font-size: 1rem;
}

.other-enquiries-grid p {
	color: var(--muted);
	font-size: .77rem;
}

.other-enquiries-grid a {
	color: var(--green-700);
	font-size: .76rem;
	font-weight: 800;
}

.contact-final-cta {
	background: var(--orange);
}

@media (max-width: 1120px) {
	.header-cta {
		display: none;
	}

	.site-menu {
		gap: 16px;
	}

	.split-layout {
		gap: 55px;
	}

	.feature-card {
		padding: 26px 22px;
	}

	.society-copy {
		padding: 60px 45px;
	}

	.footer-grid {
		grid-template-columns: 1.2fr 1fr 1fr;
		gap: 40px;
	}

	.footer-invite {
		grid-column: 1 / -1;
	}

	.final-cta-person {
		width: 260px;
	}

	.operations-grid,
	.conduct-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.operations-grid article:last-child {
		grid-column: auto;
	}

	.market-day-track {
		grid-template-columns: repeat(3, 1fr);
	}

	.farm-journey {
		grid-template-columns: repeat(3, 1fr);
	}

	.farm-journey::before {
		display: none;
	}

	.quality-check-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.shopping-method-grid,
	.resident-types-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-values-grid,
	.about-goals-grid,
	.stakeholder-wheel {
		grid-template-columns: repeat(2, 1fr);
	}

	.direct-contact-grid,
	.other-enquiries-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.section {
		padding: 82px 0;
	}

	.site-header,
	.site-header.is-scrolled {
		height: 72px;
	}

	.header-shell {
		justify-content: space-between;
	}

	.brand {
		flex-basis: 140px;
	}

	.menu-toggle {
		position: relative;
		z-index: 3;
		display: flex;
		width: 44px;
		height: 44px;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		border: 1px solid rgba(255,255,255,.25);
		border-radius: 50%;
		background: transparent;
		color: var(--white);
	}

	.menu-toggle > span:not(.screen-reader-text) {
		width: 18px;
		height: 2px;
		background: currentColor;
		transition: transform .2s, opacity .2s;
	}

	.menu-toggle[aria-expanded="true"] > span:first-child {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.primary-navigation {
		position: fixed;
		z-index: 2;
		inset: 0;
		display: grid;
		padding: 100px 30px 40px;
		background: var(--green-950);
		opacity: 0;
		visibility: hidden;
		place-items: center;
		transition: opacity .2s, visibility .2s;
	}

	.primary-navigation.is-open {
		opacity: 1;
		visibility: visible;
	}

	.site-menu {
		flex-direction: column;
		gap: 0;
		text-align: center;
	}

	.site-menu a {
		padding: 10px;
		font-family: "Manrope", sans-serif;
		font-size: 1.3rem;
	}

	.site-menu a::after {
		display: none;
	}

	.hero {
		min-height: 730px;
	}

	.hero-content h1 {
		max-width: 620px;
	}

	.society-strip-inner {
		display: block;
	}

	.society-strip-inner > p {
		max-width: none;
		margin-bottom: 20px;
		text-align: center;
	}

	.society-logos {
		flex-wrap: wrap;
		justify-content: center;
	}

	.split-layout,
	.promise-grid,
	.digital-grid {
		grid-template-columns: 1fr;
		gap: 55px;
	}

	.hassle-experience {
		grid-template-columns: 1fr;
	}

	.hassle-tabs {
		grid-template-columns: repeat(3, 1fr);
	}

	.hassle-tab {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.hassle-tab:hover,
	.hassle-tab:focus-visible,
	.hassle-tab.is-active {
		transform: translateY(-3px);
	}

	.hassle-display {
		position: relative;
		top: auto;
		min-height: 470px;
	}

	.hassle-display img {
		min-height: 470px;
	}

	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.feature-card.featured {
		transform: none;
	}

	.society-panel {
		grid-template-columns: 1fr;
	}

	.society-visual {
		min-height: 430px;
	}

	.process-track {
		grid-template-columns: repeat(3, 1fr);
		gap: 45px 15px;
	}

	.process-track::before {
		display: none;
	}

	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rewards-card {
		grid-column: 1 / -1;
	}

	.phone-wrap {
		min-height: 600px;
	}

	.day-timeline {
		grid-template-columns: repeat(2, 1fr);
	}

	.timeline-arrow {
		display: none;
	}

	.time-card {
		grid-column: 1 / -1;
	}

	.society-benefits {
		grid-template-columns: repeat(2, 1fr);
	}

	.testimonial-grid {
		grid-template-columns: 1fr;
		max-width: 650px;
		margin-inline: auto;
	}

	.testimonial-grid .testimonial-featured {
		transform: none;
	}

	.final-cta-inner {
		grid-template-columns: minmax(0, 1fr) 220px;
	}

	.final-cta-copy {
		grid-column: 1;
	}

	.final-cta-actions {
		grid-row: 2;
		grid-column: 1;
	}

	.final-cta-person {
		grid-row: 1 / span 2;
		grid-column: 2;
		width: 280px;
		margin: -40px auto -85px;
	}

	.inner-hero {
		min-height: 680px;
	}

	.page-split,
	.cleanup-panel,
	.rules-grid,
	.trust-commitment-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.page-image-card,
	.page-image-card img {
		min-height: 480px;
		height: 480px;
	}

	.cleanup-image {
		min-height: 440px;
	}

	.market-difference-grid,
	.numbered-benefits,
	.needs-grid,
	.pillar-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.page-final-cta-inner {
		grid-template-columns: 1fr 270px;
	}

	.page-final-cta-inner > img {
		width: 270px;
	}

	.journey-ribbon {
		grid-template-columns: repeat(2, 1fr);
	}

	.audience-grid {
		grid-template-columns: 1fr;
	}

	.selection-grid,
	.handling-grid,
	.freshness-commitment {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.selection-image img {
		height: 500px;
	}

	.promise-principles-grid,
	.experience-quality-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.shared-route {
		flex-wrap: wrap;
	}

	.resident-value-grid,
	.notification-grid,
	.doorstep-resident-grid,
	.resident-people-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.resident-bill {
		max-width: 560px;
		margin-inline: auto;
	}

	.doorstep-resident-grid > img {
		width: 330px;
		margin-inline: auto;
	}

	.resident-experience-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-vision-grid,
	.about-people-grid,
	.partners-grid,
	.about-signoff-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.about-team-image img {
		height: 500px;
	}

	.faq-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.faq-layout > aside {
		position: static;
	}

	.contact-form-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.contact-form-layout > div:first-child {
		position: static;
	}

	.contact-process-track {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-process-track::before {
		display: none;
	}
}

@media (max-width: 640px) {
	.container,
	.header-shell {
		width: min(calc(100% - 28px), var(--container));
	}

	.section {
		padding: 68px 0;
	}

	h1 {
		font-size: clamp(2.55rem, 13vw, 4rem);
	}

	h2 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.hero {
		min-height: 760px;
		align-items: end;
		padding-bottom: 50px;
	}

	.hero-media {
		background-position: 69% center;
	}

	.hero-shade {
		background: linear-gradient(0deg, rgba(8,35,18,.98) 0%, rgba(8,35,18,.88) 55%, rgba(8,35,18,.35) 100%);
	}

	.hero-content {
		padding-top: 120px;
	}

	.hero-content > p {
		font-size: .98rem;
	}

	.hero-actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.hero-actions .button {
		width: 100%;
	}

	.hero-trust {
		margin-top: 35px;
	}

	.society-logos span {
		font-size: .72rem;
	}

	.problem-grid,
	.feature-grid,
	.quality-steps,
	.trust-grid,
	.digital-features,
	.society-benefits {
		grid-template-columns: 1fr;
	}

	.hassle-tabs {
		grid-template-columns: 1fr;
	}

	.hassle-tab {
		flex-direction: row;
	}

	.hassle-display,
	.hassle-display img {
		min-height: 430px;
	}

	.hassle-display-copy {
		right: 22px;
		bottom: 22px;
		left: 22px;
	}

	.hassle-display-copy h3 {
		font-size: 1.45rem;
	}

	.transition-card {
		padding: 28px 12px;
	}

	.comparison-table {
		overflow: visible;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.comparison-head {
		display: none;
	}

	.comparison-row {
		display: block;
		margin-bottom: 16px;
		overflow: hidden;
		border: 1px solid var(--line);
		border-radius: 16px;
	}

	.comparison-row > * {
		padding: 18px;
	}

	.comparison-row > div {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.comparison-good::before,
	.comparison-other::before {
		display: block;
		margin-bottom: 8px;
		font-size: .7rem;
		font-weight: 800;
		letter-spacing: .1em;
		text-transform: uppercase;
	}

	.comparison-good::before {
		color: var(--green-700);
		content: "FreshBazzar";
	}

	.comparison-other::before {
		color: var(--muted);
		content: "Traditional / Online";
	}

	.feature-card {
		min-height: 255px;
	}

	.feature-icon {
		margin-bottom: 35px;
	}

	.schedule-pill {
		flex-wrap: wrap;
		border-radius: 18px;
	}

	.society-visual {
		min-height: 340px;
	}

	.society-copy {
		padding: 45px 26px;
	}

	.process-track {
		grid-template-columns: 1fr;
	}

	.process-track article {
		display: grid;
		grid-template-columns: 50px 76px 1fr;
		grid-template-rows: auto auto;
		gap: 0 15px;
		text-align: left;
	}

	.process-track article > span {
		margin: 26px 0 0;
	}

	.process-track i {
		grid-row: 1 / 3;
		grid-column: 2;
		margin: 0;
	}

	.process-track h3 {
		align-self: end;
		margin-bottom: 4px;
	}

	.process-track p {
		grid-column: 3;
	}

	.quality-steps > div:last-child,
	.rewards-card {
		grid-column: auto;
	}

	.fresh-route {
		flex-wrap: wrap;
	}

	.section-heading {
		display: block;
	}

	.section-heading > p,
	.section-heading > .text-link {
		margin-top: 20px;
	}

	.phone-wrap::before {
		width: 350px;
		height: 350px;
	}

	.whatsapp-bubble {
		right: -5px;
	}

	.day-timeline {
		grid-template-columns: 1fr;
	}

	.time-card {
		grid-column: auto;
	}

	.no-hassle {
		flex-wrap: wrap;
		gap: 8px 20px;
	}

	.final-cta-inner {
		align-items: stretch;
		grid-template-columns: 1fr;
	}

	.final-cta-actions {
		grid-row: auto;
		grid-column: 1;
		flex-basis: auto;
	}

	.final-cta-copy {
		grid-column: 1;
	}

	.final-cta-person {
		grid-row: auto;
		grid-column: 1;
		width: 250px;
		margin-top: -25px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-invite {
		grid-column: auto;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.inner-hero {
		min-height: 720px;
		align-items: flex-end;
		padding-bottom: 45px;
		background-position: 66% center;
	}

	.inner-hero-overlay {
		background: linear-gradient(0deg, rgba(7,35,18,.98), rgba(7,35,18,.86) 58%, rgba(7,35,18,.25));
	}

	.inner-hero-content {
		padding-top: 120px;
	}

	.inner-hero-content h1 {
		font-size: clamp(2.45rem, 12vw, 3.7rem);
	}

	.inner-hero-actions,
	.managed-summary {
		align-items: flex-start;
		flex-direction: column;
	}

	.resident-checks,
	.operations-grid,
	.conduct-grid,
	.rules-list,
	.market-difference-grid,
	.numbered-benefits,
	.partnership-steps,
	.needs-grid,
	.pillar-grid,
	.journey-ribbon,
	.market-day-track,
	.resident-verbs {
		grid-template-columns: 1fr;
	}

	.page-image-card,
	.page-image-card img {
		min-height: 380px;
		height: 380px;
	}

	.cleanup-copy,
	.audience-grid > article {
		padding: 35px 24px;
	}

	.page-final-cta-inner {
		grid-template-columns: 1fr;
	}

	.page-final-cta-inner > div {
		padding: 65px 0 10px;
	}

	.page-final-cta-inner > img {
		width: 240px;
		margin-inline: auto;
	}

	.page-final-cta-inner > div > div:last-child {
		align-items: flex-start;
		flex-direction: column;
	}

	.journey-steps::before {
		left: 31px;
	}

	.journey-step,
	.journey-step-reverse {
		grid-template-columns: 64px 1fr;
	}

	.journey-step .journey-number,
	.journey-step-reverse .journey-number {
		grid-row: 1;
		grid-column: 1;
	}

	.journey-step .journey-card,
	.journey-step-reverse .journey-card {
		grid-row: 1;
		grid-column: 2;
	}

	.journey-number i {
		width: 52px;
		height: 52px;
		border-width: 5px;
	}

	.journey-card {
		padding: 24px;
	}

	.shop-methods {
		grid-template-columns: 1fr;
	}

	.farm-journey,
	.quality-check-grid,
	.promise-principles-grid,
	.experience-quality-grid,
	.freshness-channel-grid,
	.selection-concerns {
		grid-template-columns: 1fr;
	}

	.selection-image img {
		height: 400px;
	}

	.handling-stages {
		grid-template-columns: repeat(2, 1fr);
	}

	.freshness-channel-grid article {
		align-items: flex-start;
		flex-direction: column;
		padding: 28px;
	}

	.shared-route {
		align-items: stretch;
		flex-direction: column;
	}

	.shared-route i {
		text-align: center;
		transform: rotate(90deg);
	}

	.quality-result,
	.freshness-cta-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.commitment-seal {
		max-width: 300px;
		margin-inline: auto;
	}

	.market-update-grid,
	.shopping-method-grid,
	.resident-experience-grid,
	.resident-types-grid,
	.before-after-resident {
		grid-template-columns: 1fr;
	}

	.resident-produce-card,
	.resident-produce-card > img {
		min-height: 420px;
		height: 420px;
	}

	.resident-bill {
		padding: 26px;
	}

	.resident-phone {
		width: 286px;
	}

	.resident-people-image img {
		height: 430px;
	}

	.before-after-resident article {
		padding: 28px;
	}

	.about-values-grid,
	.about-goals-grid,
	.stakeholder-wheel,
	.partner-principles {
		grid-template-columns: 1fr;
	}

	.about-team-image img {
		height: 410px;
	}

	.faq-hero-links {
		align-items: flex-start;
		flex-direction: column;
	}

	.faq-item button {
		grid-template-columns: 28px 1fr 28px;
		gap: 9px;
		padding: 19px 16px;
		font-size: .9rem;
	}

	.faq-answer {
		padding: 0 18px 20px 53px;
	}

	.contact-form-card {
		padding: 27px 20px;
	}

	.form-grid,
	.direct-contact-grid,
	.contact-process-track,
	.other-enquiries-grid {
		grid-template-columns: 1fr;
	}

	.form-field-full {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

/* Legal pages */
.legal-page{background:#f7faf5;color:#193126}.legal-hero{padding:150px 0 80px;background:linear-gradient(135deg,#0d3b2b,#145a3c);color:#fff}.legal-hero h1{max-width:850px;margin:15px 0 12px;color:#fff;font-size:clamp(2.7rem,6vw,5.3rem);line-height:1}.legal-hero p{max-width:720px;margin:0 0 16px;color:rgba(255,255,255,.85);font-size:1.25rem}.legal-hero small{color:#ffb45f;font-weight:700}.legal-layout{display:grid;grid-template-columns:260px minmax(0,820px);gap:70px;align-items:start;padding-top:80px;padding-bottom:100px}.legal-nav{position:sticky;top:110px;display:grid;gap:5px;padding:22px;border:1px solid #dce8dd;border-radius:18px;background:#fff;box-shadow:0 15px 45px rgba(13,59,43,.07)}.legal-nav strong{margin-bottom:8px;color:#0d3b2b;font-size:1.05rem}.legal-nav a{padding:8px 10px;border-radius:8px;color:#52665b;text-decoration:none;font-size:.92rem}.legal-nav a:hover{background:#eef7e8;color:#0d6b45}.legal-content{font-size:1.06rem;line-height:1.8}.legal-intro{margin:0 0 42px;padding:28px;border-left:5px solid #f28c28;border-radius:0 16px 16px 0;background:#fff;font-size:1.18rem;box-shadow:0 12px 35px rgba(13,59,43,.06)}.legal-content section{scroll-margin-top:110px;padding:0 0 32px;margin:0 0 32px;border-bottom:1px solid #dce8dd}.legal-content h2{margin:0 0 14px;color:#103f2d;font-size:1.65rem}.legal-content p{margin:0 0 14px;color:#455a4e}.legal-content ul{margin:10px 0 14px;padding-left:24px;color:#455a4e}.legal-content li{margin:8px 0}.legal-content a{color:#087c4e;font-weight:700}.legal-note{padding:24px;border:1px solid #f5c18d;border-radius:15px;background:#fff4e8;color:#68421e}.legal-note strong{color:#a9510a}
@media(max-width:850px){.legal-hero{padding:120px 0 60px}.legal-layout{grid-template-columns:1fr;gap:30px;padding-top:45px;padding-bottom:70px}.legal-nav{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}.legal-nav strong{grid-column:1/-1}.legal-content{font-size:1rem}.legal-intro{padding:22px}}
@media(max-width:520px){.legal-nav{grid-template-columns:1fr}.legal-hero p{font-size:1.08rem}}

/* Shared inner-page visual rhythm and icon scale */
body:not(.home) .section {
	padding-top: clamp(72px, 8vw, 112px);
	padding-bottom: clamp(72px, 8vw, 112px);
}

body:not(.home) .section-heading h2,
body:not(.home) .section h2 {
	font-size: clamp(2rem, 3.5vw, 3.4rem);
	line-height: 1.12;
}

.operations-grid article > span,
.conduct-grid article > span,
.needs-grid article > span,
.quality-check-grid article > span,
.freshness-channel-grid article > span,
.promise-principles-grid article > span,
.experience-quality-grid article > span,
.pillar-grid article > span,
.shopping-method-grid article > span,
.resident-experience-grid article > span,
.resident-types-grid article > span,
.about-values-grid article > span,
.about-goals-grid article > span,
.other-enquiries-grid article > span,
.direct-contact-grid > * > span,
.market-update-grid article > span {
	display: inline-grid;
	width: 58px;
	height: 58px;
	min-width: 58px;
	place-items: center;
	border-radius: 16px;
	background: #eaf6df;
	color: #17623f;
	font-size: 1.65rem;
	font-weight: 800;
	line-height: 1;
}

.faq-section-icon {
	width: 68px;
	height: 68px;
	font-size: 2rem;
}

@media(max-width:700px){
	body:not(.home) .section{padding-top:64px;padding-bottom:64px}
	.operations-grid article > span,.conduct-grid article > span,.needs-grid article > span,.quality-check-grid article > span,.freshness-channel-grid article > span,.promise-principles-grid article > span,.experience-quality-grid article > span,.pillar-grid article > span,.shopping-method-grid article > span,.resident-experience-grid article > span,.resident-types-grid article > span,.about-values-grid article > span,.about-goals-grid article > span,.other-enquiries-grid article > span,.direct-contact-grid > * > span,.market-update-grid article > span{width:52px;height:52px;min-width:52px;font-size:1.45rem}
}

/* Inner-page banners stay intentionally shorter than the homepage hero. */
body:not(.home) .inner-hero {
	min-height: 560px;
	padding-top: 70px;
	padding-bottom: 45px;
}

body:not(.home) .inner-hero-content {
	padding-top: 35px;
}

.legal-hero {
	padding-top: 125px;
	padding-bottom: 60px;
}

@media(max-width:900px){
	body:not(.home) .inner-hero{min-height:520px;padding-top:65px;padding-bottom:40px}
	body:not(.home) .inner-hero-content{padding-top:25px}
	.legal-hero{padding-top:110px;padding-bottom:52px}
}

@media(max-width:600px){
	body:not(.home) .inner-hero{min-height:480px;padding-top:75px;padding-bottom:32px}
	body:not(.home) .inner-hero-content{padding-top:15px}
	body:not(.home) .inner-hero-content h1{font-size:clamp(2.25rem,11vw,3.15rem)}
	.legal-hero{padding-top:100px;padding-bottom:45px}
}
